This commit is contained in:
krahets
2024-04-07 02:41:53 +08:00
parent d2b52743bb
commit aea68142f8
45 changed files with 242 additions and 242 deletions

View File

@ -9,6 +9,6 @@ icon: material/help-circle-outline
## 本章内容
- [16.1   编程环境安装](https://www.hello-algo.com/chapter_appendix/installation/)
- [16.2   一起参与创作](https://www.hello-algo.com/chapter_appendix/contribution/)
- [16.3   术语表](https://www.hello-algo.com/chapter_appendix/terminology/)
- [16.1   编程环境安装](installation.md)
- [16.2   一起参与创作](contribution.md)
- [16.3   术语表](terminology.md)

View File

@ -15,8 +15,8 @@ icon: material/view-list-outline
## 本章内容
- [4.1   数组](https://www.hello-algo.com/chapter_array_and_linkedlist/array/)
- [4.2   链表](https://www.hello-algo.com/chapter_array_and_linkedlist/linked_list/)
- [4.3   列表](https://www.hello-algo.com/chapter_array_and_linkedlist/list/)
- [4.4   内存与缓存 *](https://www.hello-algo.com/chapter_array_and_linkedlist/ram_and_cache/)
- [4.5   小结](https://www.hello-algo.com/chapter_array_and_linkedlist/summary/)
- [4.1   数组](array.md)
- [4.2   链表](linked_list.md)
- [4.3   列表](list.md)
- [4.4   内存与缓存 *](ram_and_cache.md)
- [4.5   小结](summary.md)

View File

@ -15,8 +15,8 @@ icon: material/map-marker-path
## 本章内容
- [13.1   回溯算法](https://www.hello-algo.com/chapter_backtracking/backtracking_algorithm/)
- [13.2   全排列问题](https://www.hello-algo.com/chapter_backtracking/permutations_problem/)
- [13.3   子集和问题](https://www.hello-algo.com/chapter_backtracking/subset_sum_problem/)
- [13.4   N 皇后问题](https://www.hello-algo.com/chapter_backtracking/n_queens_problem/)
- [13.5   小结](https://www.hello-algo.com/chapter_backtracking/summary/)
- [13.1   回溯算法](backtracking_algorithm.md)
- [13.2   全排列问题](permutations_problem.md)
- [13.3   子集和问题](subset_sum_problem.md)
- [13.4   N 皇后问题](n_queens_problem.md)
- [13.5   小结](summary.md)

View File

@ -15,8 +15,8 @@ icon: material/timer-sand
## 本章内容
- [2.1   算法效率评估](https://www.hello-algo.com/chapter_computational_complexity/performance_evaluation/)
- [2.2   迭代与递归](https://www.hello-algo.com/chapter_computational_complexity/iteration_and_recursion/)
- [2.3   时间复杂度](https://www.hello-algo.com/chapter_computational_complexity/time_complexity/)
- [2.4   空间复杂度](https://www.hello-algo.com/chapter_computational_complexity/space_complexity/)
- [2.5   小结](https://www.hello-algo.com/chapter_computational_complexity/summary/)
- [2.1   算法效率评估](performance_evaluation.md)
- [2.2   迭代与递归](iteration_and_recursion.md)
- [2.3   时间复杂度](time_complexity.md)
- [2.4   空间复杂度](space_complexity.md)
- [2.5   小结](summary.md)

View File

@ -15,8 +15,8 @@ icon: material/shape-outline
## 本章内容
- [3.1   数据结构分类](https://www.hello-algo.com/chapter_data_structure/classification_of_data_structure/)
- [3.2   基本数据类型](https://www.hello-algo.com/chapter_data_structure/basic_data_types/)
- [3.3   数字编码 *](https://www.hello-algo.com/chapter_data_structure/number_encoding/)
- [3.4   字符编码 *](https://www.hello-algo.com/chapter_data_structure/character_encoding/)
- [3.5   小结](https://www.hello-algo.com/chapter_data_structure/summary/)
- [3.1   数据结构分类](classification_of_data_structure.md)
- [3.2   基本数据类型](basic_data_types.md)
- [3.3   数字编码 *](number_encoding.md)
- [3.4   字符编码 *](character_encoding.md)
- [3.5   小结](summary.md)

View File

@ -15,8 +15,8 @@ icon: material/set-split
## 本章内容
- [12.1   分治算法](https://www.hello-algo.com/chapter_divide_and_conquer/divide_and_conquer/)
- [12.2   分治搜索策略](https://www.hello-algo.com/chapter_divide_and_conquer/binary_search_recur/)
- [12.3   构建树问题](https://www.hello-algo.com/chapter_divide_and_conquer/build_binary_tree_problem/)
- [12.4   汉诺塔问题](https://www.hello-algo.com/chapter_divide_and_conquer/hanota_problem/)
- [12.5   小结](https://www.hello-algo.com/chapter_divide_and_conquer/summary/)
- [12.1   分治算法](divide_and_conquer.md)
- [12.2   分治搜索策略](binary_search_recur.md)
- [12.3   构建树问题](build_binary_tree_problem.md)
- [12.4   汉诺塔问题](hanota_problem.md)
- [12.5   小结](summary.md)

View File

@ -15,10 +15,10 @@ icon: material/table-pivot
## 本章内容
- [14.1   初探动态规划](https://www.hello-algo.com/chapter_dynamic_programming/intro_to_dynamic_programming/)
- [14.2   DP 问题特性](https://www.hello-algo.com/chapter_dynamic_programming/dp_problem_features/)
- [14.3   DP 解题思路](https://www.hello-algo.com/chapter_dynamic_programming/dp_solution_pipeline/)
- [14.4   0-1 背包问题](https://www.hello-algo.com/chapter_dynamic_programming/knapsack_problem/)
- [14.5   完全背包问题](https://www.hello-algo.com/chapter_dynamic_programming/unbounded_knapsack_problem/)
- [14.6   编辑距离问题](https://www.hello-algo.com/chapter_dynamic_programming/edit_distance_problem/)
- [14.7   小结](https://www.hello-algo.com/chapter_dynamic_programming/summary/)
- [14.1   初探动态规划](intro_to_dynamic_programming.md)
- [14.2   DP 问题特性](dp_problem_features.md)
- [14.3   DP 解题思路](dp_solution_pipeline.md)
- [14.4   0-1 背包问题](knapsack_problem.md)
- [14.5   完全背包问题](unbounded_knapsack_problem.md)
- [14.6   编辑距离问题](edit_distance_problem.md)
- [14.7   小结](summary.md)

View File

@ -15,7 +15,7 @@ icon: material/graphql
## 本章内容
- [9.1   图](https://www.hello-algo.com/chapter_graph/graph/)
- [9.2   图基础操作](https://www.hello-algo.com/chapter_graph/graph_operations/)
- [9.3   图的遍历](https://www.hello-algo.com/chapter_graph/graph_traversal/)
- [9.4   小结](https://www.hello-algo.com/chapter_graph/summary/)
- [9.1   图](graph.md)
- [9.2   图基础操作](graph_operations.md)
- [9.3   图的遍历](graph_traversal.md)
- [9.4   小结](summary.md)

View File

@ -15,8 +15,8 @@ icon: material/head-heart-outline
## 本章内容
- [15.1   贪心算法](https://www.hello-algo.com/chapter_greedy/greedy_algorithm/)
- [15.2   分数背包问题](https://www.hello-algo.com/chapter_greedy/fractional_knapsack_problem/)
- [15.3   最大容量问题](https://www.hello-algo.com/chapter_greedy/max_capacity_problem/)
- [15.4   最大切分乘积问题](https://www.hello-algo.com/chapter_greedy/max_product_cutting_problem/)
- [15.5   小结](https://www.hello-algo.com/chapter_greedy/summary/)
- [15.1   贪心算法](greedy_algorithm.md)
- [15.2   分数背包问题](fractional_knapsack_problem.md)
- [15.3   最大容量问题](max_capacity_problem.md)
- [15.4   最大切分乘积问题](max_product_cutting_problem.md)
- [15.5   小结](summary.md)

View File

@ -15,7 +15,7 @@ icon: material/table-search
## 本章内容
- [6.1   哈希表](https://www.hello-algo.com/chapter_hashing/hash_map/)
- [6.2   哈希冲突](https://www.hello-algo.com/chapter_hashing/hash_collision/)
- [6.3   哈希算法](https://www.hello-algo.com/chapter_hashing/hash_algorithm/)
- [6.4   小结](https://www.hello-algo.com/chapter_hashing/summary/)
- [6.1   哈希表](hash_map.md)
- [6.2   哈希冲突](hash_collision.md)
- [6.3   哈希算法](hash_algorithm.md)
- [6.4   小结](summary.md)

View File

@ -15,7 +15,7 @@ icon: material/family-tree
## 本章内容
- [8.1   堆](https://www.hello-algo.com/chapter_heap/heap/)
- [8.2   建堆操作](https://www.hello-algo.com/chapter_heap/build_heap/)
- [8.3   Top-k 问题](https://www.hello-algo.com/chapter_heap/top_k/)
- [8.4   小结](https://www.hello-algo.com/chapter_heap/summary/)
- [8.1   堆](heap.md)
- [8.2   建堆操作](build_heap.md)
- [8.3   Top-k 问题](top_k.md)
- [8.4   小结](summary.md)

View File

@ -15,6 +15,6 @@ icon: material/calculator-variant-outline
## 本章内容
- [1.1   算法无处不在](https://www.hello-algo.com/chapter_introduction/algorithms_are_everywhere/)
- [1.2   算法是什么](https://www.hello-algo.com/chapter_introduction/what_is_dsa/)
- [1.3   小结](https://www.hello-algo.com/chapter_introduction/summary/)
- [1.1   算法无处不在](algorithms_are_everywhere.md)
- [1.2   算法是什么](what_is_dsa.md)
- [1.3   小结](summary.md)

View File

@ -15,6 +15,6 @@ icon: material/book-open-outline
## 本章内容
- [0.1   关于本书](https://www.hello-algo.com/chapter_preface/about_the_book/)
- [0.2   如何使用本书](https://www.hello-algo.com/chapter_preface/suggestions/)
- [0.3   小结](https://www.hello-algo.com/chapter_preface/summary/)
- [0.1   关于本书](about_the_book.md)
- [0.2   如何使用本书](suggestions.md)
- [0.3   小结](summary.md)

View File

@ -15,9 +15,9 @@ icon: material/text-search
## 本章内容
- [10.1   二分查找](https://www.hello-algo.com/chapter_searching/binary_search/)
- [10.2   二分查找插入点](https://www.hello-algo.com/chapter_searching/binary_search_insertion/)
- [10.3   二分查找边界](https://www.hello-algo.com/chapter_searching/binary_search_edge/)
- [10.4   哈希优化策略](https://www.hello-algo.com/chapter_searching/replace_linear_by_hashing/)
- [10.5   重识搜索算法](https://www.hello-algo.com/chapter_searching/searching_algorithm_revisited/)
- [10.6   小结](https://www.hello-algo.com/chapter_searching/summary/)
- [10.1   二分查找](binary_search.md)
- [10.2   二分查找插入点](binary_search_insertion.md)
- [10.3   二分查找边界](binary_search_edge.md)
- [10.4   哈希优化策略](replace_linear_by_hashing.md)
- [10.5   重识搜索算法](searching_algorithm_revisited.md)
- [10.6   小结](summary.md)

View File

@ -15,14 +15,14 @@ icon: material/sort-ascending
## 本章内容
- [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/)
- [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)

View File

@ -15,7 +15,7 @@ icon: material/stack-overflow
## 本章内容
- [5.1   栈](https://www.hello-algo.com/chapter_stack_and_queue/stack/)
- [5.2   队列](https://www.hello-algo.com/chapter_stack_and_queue/queue/)
- [5.3   双向队列](https://www.hello-algo.com/chapter_stack_and_queue/deque/)
- [5.4   小结](https://www.hello-algo.com/chapter_stack_and_queue/summary/)
- [5.1   栈](stack.md)
- [5.2   队列](queue.md)
- [5.3   双向队列](deque.md)
- [5.4   小结](summary.md)

View File

@ -15,9 +15,9 @@ icon: material/graph-outline
## 本章内容
- [7.1   二叉树](https://www.hello-algo.com/chapter_tree/binary_tree/)
- [7.2   二叉树遍历](https://www.hello-algo.com/chapter_tree/binary_tree_traversal/)
- [7.3   二叉树数组表示](https://www.hello-algo.com/chapter_tree/array_representation_of_tree/)
- [7.4   二叉搜索树](https://www.hello-algo.com/chapter_tree/binary_search_tree/)
- [7.5   AVL 树 *](https://www.hello-algo.com/chapter_tree/avl_tree/)
- [7.6   小结](https://www.hello-algo.com/chapter_tree/summary/)
- [7.1   二叉树](binary_tree.md)
- [7.2   二叉树遍历](binary_tree_traversal.md)
- [7.3   二叉树数组表示](array_representation_of_tree.md)
- [7.4   二叉搜索树](binary_search_tree.md)
- [7.5   AVL 树 *](avl_tree.md)
- [7.6   小结](summary.md)