Chapter 11. Sorting¶
Abstract
Sorting is like a magical key that turns chaos into order, enabling us to understand and handle data more efficiently.
Whether it's simple ascending order or complex categorical arrangements, sorting reveals the harmonious beauty of data.
Chapter contents¶
- 11.1 Sorting algorithms
- 11.2 Selection sort
- 11.3 Bubble sort
- 11.4 Insertion sort
- 11.5 Quick sort
- 11.6 Merge sort
- 11.7 Heap sort
- 11.8 Bucket sort
- 11.9 Counting sort
- 11.10 Radix sort
- 11.11 Summary