Skip to content

Commit

Permalink
Update the page tree
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets committed Apr 16, 2023
1 parent f5b8978 commit 0ade8d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ vector<vector<TreeNode *>> res;

/* 前序遍历 */
static void preOrder(TreeNode *root) {
// 剪枝
if (root == nullptr || root->val == 3) {
return;
}
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ nav:
- 9. &nbsp; &nbsp; 图:
- 9.1. &nbsp; 图: chapter_graph/graph.md
- 9.2. &nbsp; 图基础操作: chapter_graph/graph_operations.md
- 9.3. &nbsp; 图的遍历(New): chapter_graph/graph_traversal.md
- 9.3. &nbsp; 图的遍历: chapter_graph/graph_traversal.md
- 9.4. &nbsp; 小结: chapter_graph/summary.md
- 10. &nbsp; &nbsp; 查找算法:
- 10.1. &nbsp; 线性查找: chapter_searching/linear_search.md
Expand All @@ -187,7 +187,7 @@ nav:
- 11.8. &nbsp; 基数排序(New): chapter_sorting/radix_sort.md
- 11.9. &nbsp; 小结: chapter_sorting/summary.md
- 12. &nbsp; &nbsp; 回溯算法:
- 12.1. &nbsp; 回溯算法: chapter_backtracking/backtracking_algorithm.md
- 12.1. &nbsp; 回溯算法(New): chapter_backtracking/backtracking_algorithm.md
- 13. &nbsp; &nbsp; 附录:
- 13.1. &nbsp; 编程环境安装: chapter_appendix/installation.md
- 13.2. &nbsp; 一起参与创作: chapter_appendix/contribution.md
Expand Down

0 comments on commit 0ade8d8

Please sign in to comment.