mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 20:16:29 +08:00
32 lines
1.4 KiB
Markdown
32 lines
1.4 KiB
Markdown
---
|
|
comments: true
|
|
icon: material/sort-ascending
|
|
---
|
|
|
|
# 第 11 章 排序
|
|
|
|
<div class="center-table" markdown>
|
|
|
|
![排序](../assets/covers/chapter_sorting.jpg){ class="cover-image" }
|
|
|
|
</div>
|
|
|
|
!!! abstract
|
|
|
|
排序犹如一把将混乱变为秩序的魔法钥匙,使我们能以更高效的方式理解与处理数据。
|
|
|
|
无论是简单的升序,还是复杂的分类排列,排序都向我们展示了数据的和谐美感。
|
|
|
|
## 本章内容
|
|
|
|
- [11.1 排序算法](https://www.hello-algo.com/chapter_sorting/sorting_algorithm/)
|
|
- [11.2 选择排序](https://www.hello-algo.com/chapter_sorting/selection_sort/)
|
|
- [11.3 冒泡排序](https://www.hello-algo.com/chapter_sorting/bubble_sort/)
|
|
- [11.4 插入排序](https://www.hello-algo.com/chapter_sorting/insertion_sort/)
|
|
- [11.5 快速排序](https://www.hello-algo.com/chapter_sorting/quick_sort/)
|
|
- [11.6 归并排序](https://www.hello-algo.com/chapter_sorting/merge_sort/)
|
|
- [11.7 堆排序](https://www.hello-algo.com/chapter_sorting/heap_sort/)
|
|
- [11.8 桶排序](https://www.hello-algo.com/chapter_sorting/bucket_sort/)
|
|
- [11.9 计数排序](https://www.hello-algo.com/chapter_sorting/counting_sort/)
|
|
- [11.10 基数排序](https://www.hello-algo.com/chapter_sorting/radix_sort/)
|
|
- [11.11 小结](https://www.hello-algo.com/chapter_sorting/summary/)
|