Multiple choice

In which of the following sorts, we recursively chop the list into two sublist of almost equal sizes and when we get lists of size one, then start sorted combining of list in the reverse order?

  1. Quick Sort

  2. Radix Sort

  3. Bucket Sort

  4. Merge Sort

  5. Direct Sequencing

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Here, we recursively chop the list into two sublists of almost equal sizes and when we get list of size one, then start sorted combining of lists the reverse order.