1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

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

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);
}
```