In: Computer Science
Solve the following recurrence relations: (find an asymptotic upper bound O(?) for each one)
a. T(n) = T(2n/3)+T(n/3) + n^2
b. T(n) = √nT(√n) + n
c. T(n) = T(n-1)+T(n/2) + n
The base case is that constant size problems can be solved in constant time (O(1)). You can use the induction, substitution or recursion tree method