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

Commit 808f2f3

Browse files
Update
1 parent f36d2a1 commit 808f2f3

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
@@ -75,7 +75,7 @@ void traversal(TreeNode* cur, vector<int>& vec) {
7575
traversal(cur->right, vec); // 右
7676
}
7777
```
78-
中序遍历(中左右)
78+
前序遍历(中左右)
7979
```
8080
void traversal(TreeNode* cur, vector<int>& vec) {
8181
if (cur == NULL) return;

0 commit comments

Comments
 (0)