Skip to content

Commit f137558

Browse files
Added AVL tree implementation with detailed comments
1 parent 6275064 commit f137558

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/thealgorithms/tree/BSTTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ private static class Node {
1515
this.key = key;
1616
this.left = null;
1717
this.right = null;
18-
} }
18+
}
19+
}
1920

2021
private Node root;
2122

0 commit comments

Comments
 (0)