571 views
1 votes
1 votes
T(n) = 2T(n/2) + nlogn

a. O(nlogn)

b.n(log^2n)

c.O(n^2)

1 Answer

Related questions

1 votes
1 votes
1 answer
1
2 votes
2 votes
1 answer
2
iarnav asked Jan 11, 2018
1,114 views
can we solve this T(n) = T(n/2) + 1 using master theorem?
3 votes
3 votes
0 answers
3
Sona Barman asked Jan 8, 2018
2,318 views
I have doubt regarding Master theorem.In which situation we should use Normal Master theorem/extended Master theorem?
0 votes
0 votes
0 answers
4
aka 53 asked Nov 22, 2017
353 views
T(n) = T(n-1) + nIn which case it falls ??