Update tree.md

This commit is contained in:
wuliaojizhi 2023-05-18 17:39:50 +08:00 committed by GitHub
parent a6ff4563c6
commit d6ab73bfa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -176,8 +176,8 @@ public void postOrder(TreeNode root){
if(root == null){
return;
}
postOrder(root.left);
postOrder(root.right);
postOrder(root.left);
system.out.println(root.data);
}
```