Add summary for the chapters of introduction, hashing, heap, graph, sorting

This commit is contained in:
krahets
2023-02-26 22:47:21 +08:00
parent 1a49631dba
commit c2d641537e
15 changed files with 78 additions and 19 deletions

View File

@@ -132,6 +132,7 @@ nav:
- 1.     引言:
- 1.1.   算法无处不在: chapter_introduction/algorithms_are_everywhere.md
- 1.2.   算法是什么: chapter_introduction/what_is_dsa.md
- 1.3.   小结: chapter_introduction/summary.md
- 2.     计算复杂度:
- 2.1.   算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 2.2.   时间复杂度: chapter_computational_complexity/time_complexity.md
@@ -165,10 +166,12 @@ nav:
- 8.     堆:
- 8.1.   堆Heap: chapter_heap/heap.md
- 8.2.   建堆操作 *: chapter_heap/build_heap.md
- 8.3.   小结: chapter_heap/summary.md
- 9.     图:
- 9.1.   图Graph: chapter_graph/graph.md
- 9.2.   图基础操作: chapter_graph/graph_operations.md
- 9.3.   图的遍历: chapter_graph/graph_traversal.md
- 9.4.   小结: chapter_graph/summary.md
- 10.     查找算法:
- 10.1.   线性查找: chapter_searching/linear_search.md
- 10.2.   二分查找: chapter_searching/binary_search.md