feat: Add the section of heap sort. (#516)

* Add the section of heap sort.

* Update heap_sort.cpp
This commit is contained in:
Yudong Jin
2023-05-26 04:46:56 +08:00
committed by GitHub
parent afb08a26e0
commit ee716a2c23
18 changed files with 309 additions and 6 deletions

View File

@ -181,15 +181,16 @@ nav:
- 10.5.   小结: chapter_searching/summary.md
- 11.     排序算法:
- 11.1.   排序算法: chapter_sorting/sorting_algorithm.md
- 11.2.   选择排序(New): chapter_sorting/selection_sort.md
- 11.2.   选择排序New: chapter_sorting/selection_sort.md
- 11.3.   冒泡排序: chapter_sorting/bubble_sort.md
- 11.4.   插入排序: chapter_sorting/insertion_sort.md
- 11.5.   快速排序: chapter_sorting/quick_sort.md
- 11.6.   归并排序: chapter_sorting/merge_sort.md
- 11.7.   排序: chapter_sorting/bucket_sort.md
- 11.8.   计数排序: chapter_sorting/counting_sort.md
- 11.9.   数排序: chapter_sorting/radix_sort.md
- 11.10.   小结: chapter_sorting/summary.md
- 11.7.   排序New: chapter_sorting/heap_sort.md
- 11.8.   排序: chapter_sorting/bucket_sort.md
- 11.9.   数排序: chapter_sorting/counting_sort.md
- 11.10.   基数排序: chapter_sorting/radix_sort.md
- 11.11.   小结: chapter_sorting/summary.md
- 12.     回溯算法:
- 12.1.   回溯算法New: chapter_backtracking/backtracking_algorithm.md
- 12.2.   全排列问题New: chapter_backtracking/permutations_problem.md