Skip to content

Commit d6ab73b

Browse files
authored
Update tree.md
1 parent a6ff456 commit d6ab73b

File tree

1 file changed

+1
-1
lines changed
  • docs/cs-basics/data-structure

1 file changed

+1
-1
lines changed

docs/cs-basics/data-structure/tree.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ public void postOrder(TreeNode root){
176176
if(root == null){
177177
return;
178178
}
179-
postOrder(root.left);
180179
postOrder(root.right);
180+
postOrder(root.left);
181181
system.out.println(root.data);
182182
}
183183
```

0 commit comments

Comments
 (0)