You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/docs/chapter_sorting/index.md

29 lines
909 B

1 year ago
---
comments: true
1 year ago
icon: material/sort-ascending
1 year ago
---
1 year ago
# 第 11 章   排序
1 year ago
1 year ago
![排序](../assets/covers/chapter_sorting.jpg){ class="cover-image" }
1 year ago
1 year ago
!!! abstract
排序犹如一把将混乱变为秩序的魔法钥匙,使我们能以更高效的方式理解与处理数据。
无论是简单的升序,还是复杂的分类排列,排序都向我们展示了数据的和谐美感。
1 year ago
## 本章内容
8 months ago
- [11.1   排序算法](sorting_algorithm.md)
- [11.2   选择排序](selection_sort.md)
- [11.3   冒泡排序](bubble_sort.md)
- [11.4   插入排序](insertion_sort.md)
- [11.5   快速排序](quick_sort.md)
- [11.6   归并排序](merge_sort.md)
- [11.7   堆排序](heap_sort.md)
- [11.8   桶排序](bucket_sort.md)
- [11.9   计数排序](counting_sort.md)
- [11.10   基数排序](radix_sort.md)
- [11.11   小结](summary.md)