Skip to main content

Sorting

👍🏻 Great for👎🏻 Bad for
Bubble Sort-ANY CASE
Quick SortMost casesShort array
Tim SortSemi-sorted array
Heap SortLarge cache
Counting SortSimple element variationComplex element variation
Expensive compare
Selection SortExpansive swap
Insertion SortShort array
Semi-sorted array
Expensive swap
Shell SortShort array
Semi-sorted array
Expansive swap
Long array
Merge sortExpansive swap
In-place Merge sort
3-Way Quick SortMany duplicate elements

For complexity, characteristics, check out Wikipedia.