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.
|
|
|
---
|
|
|
|
comments: true
|
|
|
|
icon: material/sort-ascending
|
|
|
|
---
|
|
|
|
|
|
|
|
# 第 11 章 排序
|
|
|
|
|
|
|
|
![排序](../assets/covers/chapter_sorting.jpg){ class="cover-image" }
|
|
|
|
|
|
|
|
!!! abstract
|
|
|
|
|
|
|
|
排序猶如一把將混亂變為秩序的魔法鑰匙,使我們能以更高效的方式理解與處理資料。
|
|
|
|
|
|
|
|
無論是簡單的升序,還是複雜的分類排列,排序都向我們展示了資料的和諧美感。
|
|
|
|
|
|
|
|
## 本章內容
|
|
|
|
|
|
|
|
- [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)
|