Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
ljfirst committed Sep 6, 2018
1 parent 30053b7 commit f43ddff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified bin/tree/TreeTest.class
Binary file not shown.
2 changes: 1 addition & 1 deletion data_structure/tree/TreeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static void main(String[] args) {

//先序构建二叉树
root = root.create_preOrder(root, tree_num, 0);
BinaryTree k = root.findxandy(root, 7, 3);
BinaryTree k = root.findxandy(root, 5, 3);
if (k != null) {
System.out.println(k.value);
}else {
Expand Down

0 comments on commit f43ddff

Please sign in to comment.