Skip to content

Commit 979fa23

Browse files
authored
Update AVLTree.java
1 parent a004747 commit 979fa23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataStructures/Trees/AVLTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ private void reheight(Node node) {
202202
}
203203
}
204204

205-
public boolean search(int key) {
205+
public boolean search(int key) {
206206
Node result = searchHelper(this.root,key);
207207
if(result != null)
208208
return true ;

0 commit comments

Comments
 (0)