Merge Sort
easyImplement merge sort using divide-and-conquer
Merge Sort
Key Insight
Divide in half recursively, then merge sorted halves back together
Step 1Start: Unsorted Array
Split into halves
38
027
143
23
39
482
510
6Split the array in half recursively until single elements.
1 / 6