edited by
1,507 views
0 0 votes

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

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

Or Using AnyOther Method?

 

Please log in or register to answer this question.

Position:
Show:

Related questions

2 2 votes
6 6 answers
26.7k
26.7k views
mohitrai0_0 asked Sep 28, 2018
26,714 views
I was wondering whether the recurrence T(n) = T(n/2) + 2n could be solved by using master theorem, and what would be the way. I tried solving the recurrence but can't. Th...
0 0 votes
2 2 answers
4.1k
4.1k views
manvi_agarwal asked Aug 10, 2018
4,142 views
Solution using back substitution methodT(n) = 2T(n/2) + nlogn ?detailed solution please.ans is nlognlogn or n(logn)^2
0 0 votes
1 1 answer
3.2k
3.2k views
Rahul Ranjan 1 asked Aug 6, 2018
3,207 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 0 votes
1 1 answer
1.2k
1.2k views
bts asked Jul 17, 2018
1,155 views
Solve by using master's theorem