The recursive mergeSort produces a dramatic increase in efficiency in comparison with the N2 order of the quadratic sorts. This concept of dividing the problem in two is used in several other classic algorithms. Once again, recursion makes it easier to define a problem and code the solution.
Last modified: December 12, 2022
Back to Order Of Recursive Mergesort