Nearly every standard library offers data structures that can be sorted without really thinking about it. Still, it might come in handy to know about commonly used sorting algorithms or even implement some of them yourself as an exercise. After all, most sorting algorithms make heavy use of array indexing and recursion, and for this reason alone, they are often used as a medium to learn about and apply these concepts.
Even though sorting algorithms can be categorized by just a handful of different methods, there are hundreds of variations out there. Some algorithms are more efficient than others. You can compare their efficiency by both time complexity and memory consumption. It is worth noting that some sorting algorithms may perform worse in certain situations while, on average, they perform better than others. Finally, a stable sorting algorithm is expected to preserve the order of elements considered to be equal.
As you can tell, choosing the right sorting algorithm may not always be so easy. For this reason, I have compiled the following list, including implementation details for future reference:
Name | Best Average Worst | Memory | Stable | Method | Visualization |
---|---|---|---|---|---|
Quicksort | | No | Partitioning | ||
Merge sort | | Yes | Merging | ||
Heapsort | | 1 | No | Selection | |
Insertion sort | | 1 | Yes | Insertion | |
Selection sort | | 1 | No | Selection | |
Shellsort | | 1 | No | Insertion | |
Bubble sort | | 1 | Yes | Exchanging |
Further readingโ
- Sorting algorithm on Wikipedia, the free encyclopedia