Question: Solve the following recurrence relation without using the master method! report the big O 1. T(n) = 2T(n/2) =n^22. 2. T(n) = 5T(n/4) + sqrt(n)
Solve the following recurrence relation without using the master method! report the big O
1. T(n) = 2T(n/2) =n^22.
2. T(n) = 5T(n/4) + sqrt(n)

T(n) = 2T(n/2) + n2 T(n) = 5T(n/4) + Vn
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
