The fastest current sorting algorithm. Uses a mix of Merge Sort and Insertion Sort.
Process
- Define the min-size for a run
- Sort each run using Insertion Sort
- Merge the runs back together using merge sort.
The fastest current sorting algorithm. Uses a mix of Merge Sort and Insertion Sort.