Answers

Question and Answer:

  Home  C++ Programming

⟩ Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?

Mergesort always makes recursive calls to sort subarrays that are about half size of the original array, resulting in O(n log n) time.

 134 views

More Questions for you: