Search results for recurrence+time-complexity

31 votes
6 answers
4
0 votes
1 answer
8
Solve the following recurrences using recursion tree method and write the asymptotic time complexity T(n)=T(n/2)+n^2
1 votes
0 answers
9
Can anyone solve this recurrence relation T(n) = 3T(n-1) + O(n^2)Its ans is O(3^n n^2)
0 votes
1 answer
12
How to solve this recurrence relationT(n)= T(0.09n) + T(0.91n) + cnwhere c is constant and T(1)=1options are-
To see more, click for the full list of questions or popular tags.