Table of contents
Open Table of contents
Context
The time complexity of a recursive algorithm may not be straight-forward to calculate. It could be analyzed with the substitution method, the recursion tree method, and the master theorem.
Recursion Tree
A recursion tree is a tree where each node represents the cost of a certain recursive subproblem. Then you can sum up the numbers in each node to get the total cost.
For example, you can check the time complexity analysis in the following two posts.
Master Theorem
The master theorem is a formula for solving recurrences of the form T(n) = aT(n/b) +f(n), where a ≥ 1 and b > 1 and f(n) is asymptotically positive. (Asymptotically positive means that the function is positive for all sufficiently large n.)
let
- Work is dominated by subproblem (a>b^k).
- Work to split/recombine is comparable to subproblem (a=b^k).
- Work to split/recombine dominates (a<b^k).
References
- Standford CS161 lecture 3 PDF
- Sedgewick, Analysis of Algorithms, recurrence relations
- Cornell CS3110 lecture 20
- Wikipedia master theorem
- GeekForGeeks master theorem
- Programiz master theorem