Skip to content

Commit d6ab73b

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • docs/cs-basics/data-structure

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

Lines changed: 1 addition & 1 deletion
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)