Skip to content

Commit 7ca27c3

Browse files
committed
Prepare 1.0.0b3 release.
1 parent def8da6 commit 7ca27c3

30 files changed

+6
-6
lines changed
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

docs/chapter_backtracking/backtracking_algorithm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
在每次“尝试”中,我们通过将当前节点添加进 `path` 来记录路径;而在“回退”前,我们需要将该节点从 `path` 中弹出,**以恢复本次尝试之前的状态**。换句话说,**我们可以将尝试和回退理解为“前进”与“撤销”**,两个操作是互为相反的。
146146

147147
=== "<1>"
148-
![preorder_find_paths_step1](backtracking_algorithm.assets/preorder_find_paths_step1.png)
148+
![尝试与回退](backtracking_algorithm.assets/preorder_find_paths_step1.png)
149149

150150
=== "<2>"
151151
![preorder_find_paths_step2](backtracking_algorithm.assets/preorder_find_paths_step2.png)
Loading
Binary file not shown.
Binary file not shown.

docs/chapter_searching/replace_linear_by_hashing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
2. 将键值对 `num[i]` 和索引 `i` 添加进哈希表;
8383

8484
=== "<1>"
85-
![two_sum_hashtable_step1](replace_linear_by_hashing.assets/two_sum_hashtable_step1.png)
85+
![辅助哈希表求解两数之和](replace_linear_by_hashing.assets/two_sum_hashtable_step1.png)
8686

8787
=== "<2>"
8888
![two_sum_hashtable_step2](replace_linear_by_hashing.assets/two_sum_hashtable_step2.png)

docs/chapter_sorting/counting_sort.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $$
9494
遍历完成后,数组 `res` 中就是排序好的结果,最后使用 `res` 覆盖原数组 `nums` 即可。
9595

9696
=== "<1>"
97-
![counting_sort_step1](counting_sort.assets/counting_sort_step1.png)
97+
![计数排序步骤](counting_sort.assets/counting_sort_step1.png)
9898

9999
=== "<2>"
100100
![counting_sort_step2](counting_sort.assets/counting_sort_step2.png)

docs/chapter_tree/binary_search_tree.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
-`cur.val = num` ,说明找到目标节点,跳出循环并返回该节点;
1919

2020
=== "<1>"
21-
![bst_search_step1](binary_search_tree.assets/bst_search_step1.png)
21+
![二叉搜索树查找节点示例](binary_search_tree.assets/bst_search_step1.png)
2222

2323
=== "<2>"
2424
![bst_search_step2](binary_search_tree.assets/bst_search_step2.png)
@@ -185,7 +185,7 @@
185185
3.`tmp` 的值覆盖待删除节点的值;
186186

187187
=== "<1>"
188-
![bst_remove_case3_step1](binary_search_tree.assets/bst_remove_case3_step1.png)
188+
![二叉搜索树删除节点示例](binary_search_tree.assets/bst_remove_case3_step1.png)
189189

190190
=== "<2>"
191191
![bst_remove_case3_step2](binary_search_tree.assets/bst_remove_case3_step2.png)
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

docs/chapter_tree/binary_tree_traversal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
递归过程可分为“递”和“归”两个相反的部分。“递”表示开启新方法,程序在此过程中访问下一个节点;“归”表示函数返回,代表该节点已经访问完毕。如下图所示,为前序遍历二叉树的递归过程。
210210

211211
=== "<1>"
212-
![preorder_step1](binary_tree_traversal.assets/preorder_step1.png)
212+
![前序遍历的递归过程](binary_tree_traversal.assets/preorder_step1.png)
213213

214214
=== "<2>"
215215
![preorder_step2](binary_tree_traversal.assets/preorder_step2.png)

0 commit comments

Comments
 (0)