Category:Master Theorem: Difference between revisions
From charlesreid1
(Created page with "Master theorem is a way of analyzing recurrence relations of the form: <math> T(n) = a T \left( \frac{n}{b} \right) + f(n) </math>") |
No edit summary |
||
| Line 4: | Line 4: | ||
T(n) = a T \left( \frac{n}{b} \right) + f(n) | T(n) = a T \left( \frac{n}{b} \right) + f(n) | ||
</math> | </math> | ||
[[Category:Algorithms]] | |||
[[Category:Divide and Conquer]] | |||
Latest revision as of 09:32, 16 July 2017
Master theorem is a way of analyzing recurrence relations of the form:
$ T(n) = a T \left( \frac{n}{b} \right) + f(n) $
Pages in category "Master Theorem"
The following 2 pages are in this category, out of 2 total.