1,774 views
0 votes
0 votes
Solution using back substitution method

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

detailed solution please.

ans is nlognlogn or n(logn)^2

2 Answers

2 votes
2 votes

Using Master's theorem, it's $O(n(logn)^2)$

By Substitution method, 

Related questions

0 votes
0 votes
1 answer
2
Rahul Ranjan 1 asked Aug 6, 2018
1,665 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
3
bts asked Jul 17, 2018
570 views
Solve by using master's theorem