Skip to content

Analyze Recursive Algorithm Time Complexity for LeetCode Questions with Substitution, Recursion Tree and Master Theorem

Published: at 06:23 AM

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.

  1. leetcode 339 nested list weight sum
  2. leetcode 91 ascii encoded strings

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 ccrit=logba=log(#subproblems)/log(subproblem size)c_{crit} = \log _b a = \log \text{(\#subproblems)} / \log \text{(subproblem size)}

  1. Work is dominated by subproblem (a>b^k). T(n)=Θ(nlogba)T(n)=\Theta (n^{\log_b{a}})
  2. Work to split/recombine is comparable to subproblem (a=b^k). T(n)=Θ(nlogbalogkn)T(n)=\Theta(n^{\log _b a} \log ^k n)
  3. Work to split/recombine dominates (a<b^k). T(n)=Θ(f(n))T(n)=\Theta (f(n))

References

  1. Standford CS161 lecture 3 PDF
  2. Sedgewick, Analysis of Algorithms, recurrence relations
  3. Cornell CS3110 lecture 20
  4. Wikipedia master theorem
  5. GeekForGeeks master theorem
  6. Programiz master theorem

Previous Post
LeetCode 339 LintCode 551 Nested List Weight Sum
Next Post
Generative AI (Artificial Intelligence) with Large Language Models (LLM) - Part 1