Computer Science, asked by bekeshsingh6757, 1 year ago

What is the best case and worst case in complexity of merge sort?

Answers

Answered by bhavyapatel49
0
what is your question
Answered by bharti8442
0
In the worst case, merge sort does about 39% fewer comparisons than quicksort does in theaverage case. In terms ofmoves, merge sort's worst case complexity isO(n log n)—the same complexity as quicksort's best case, and merge sort's best case takes about half as many iterations as the worst case.
Similar questions