Lesson A18
Next: A Non-recursive...Lesson Overview: In Lesson A17, Quadratic Sorting Algorithms, we saw how the number of steps required increased N^2 when sorting N elements. In this lesson, we will study a recursive sort, called mergeSort that works by dividing lists in half. After solving a preliminary merge problem, you will code a recursive mergeSort.
Taking two lists and putting them together.
A sort that divides the list into two parts, sorts those parts, and then brings the sorted parts back together.