Sorting Guide
Different Sorting Algorithms:β
O(n^2)
β
- Bubble Sort
- Insertion Sort
- Selection Sort
- Shell Sort
O(nlog n)
β
- Heap Sort
- Merge Sort
- Quick Sort
- std:: sort() in C++
- qsort() in C/C++
Other Sorts with different Time Complexities
β
- Radix Sort
- Count Sort
- DNF Sort
- Wave Sort
- Bucket Sort
- Count inversion - Merge sort
Hereπ, n = number of elements to be sorted.