Skip to content

Commit 5a4aa8c

Browse files
authored
en: fix picture file name (#1764)
1 parent db64108 commit 5a4aa8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/docs/chapter_divide_and_conquer/build_binary_tree_problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Using the data from the preceding figure, we can follow the steps shown in the n
2929
2. Find the index of the root node 3 in the `inorder` sequence, and use this index to split `inorder` into `[ 9 | 3 | 1 2 7 ]`.
3030
3. According to the split of the `inorder` sequence, it is straightforward to determine that the left and right subtrees contain 1 and 3 nodes, respectively, so we can split the `preorder` sequence into `[ 3 | 9 | 2 1 7 ]` accordingly.
3131

32-
![Dividing the subtrees in pre-order and in-order traversals](build_binary_tree_problem.assets/build_tree_pre-order_in-order_division.png)
32+
![Dividing the subtrees in pre-order and in-order traversals](build_binary_tree_problem.assets/build_tree_preorder_inorder_division.png)
3333

3434
### Describing subtree ranges based on variables
3535

0 commit comments

Comments
 (0)