edited by
924 views
0 votes
0 votes

T (n) = T (n/2) + 2n

Using Master's Method What is the Complexity Of This Recurrence Relation?

Or Using AnyOther Method?

 

edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
2
manvi_agarwal asked Aug 10, 2018
1,676 views
Solution using back substitution methodT(n) = 2T(n/2) + nlogn ?detailed solution please.ans is nlognlogn or n(logn)^2
0 votes
0 votes
1 answer
3
Rahul Ranjan 1 asked Aug 6, 2018
1,655 views
How can we apply Masters theorem to these equations : T(n) = 16*T(n/4) + n!and T(n) = 4*T(n/2) + cnPlease explain the process.
0 votes
0 votes
1 answer
4
bts asked Jul 17, 2018
563 views
Solve by using master's theorem