Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 90ed55b

Browse files
authored
Update 二叉树的递归遍历.md
修改错别字
1 parent 3d303eb commit 90ed55b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/二叉树的递归遍历.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ traversal(cur->left, vec); // 左
5454
traversal(cur->right, vec); // 右
5555
```
5656

57-
单层递归的逻辑就是按照中左右的顺序来处理的,这样二叉树的前序遍历,基本就写完了,在看一下完整代码
57+
单层递归的逻辑就是按照中左右的顺序来处理的,这样二叉树的前序遍历,基本就写完了,再看一下完整代码
5858

5959
前序遍历:
6060

0 commit comments

Comments
 (0)