308 views

1 Answer

0 votes
0 votes

@Crackca

It is based on the divide and conquers approach. Therefore, the time complexity of Merge Sort is θ(nlogn)...

 

1. https://gateoverflow.in/146006/Sorted-list 

 

2. https://gateoverflow.in/16103/The-time-complexity-of-producing-a-sorted-list

 

 

Related questions

0 votes
0 votes
1 answer
1
Deepesh Pai asked Dec 25, 2018
383 views
What is difference between tightest upper bound and tightest lower bound? Give ur explanation with examples?
0 votes
0 votes
0 answers
2
Saswat Swarup asked Aug 11, 2017
231 views
T(n)= T(n-1) + T(n-2) – T(n-3)Given is the recurrence relation for Time Complexity.Is this type of recurrence relation for Time Complexity possible ?If yes, then please...
0 votes
0 votes
1 answer
3