Skip to content

Commit 68e2ba2

Browse files
authored
1 parent 2cb4c2f commit 68e2ba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/datastructures/trees/AVLSimple renamed to src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131

32-
public class AVLTree {
32+
public class AVLSimple {
3333
private class Node{
3434
int data;
3535
int height;
@@ -82,7 +82,7 @@ public void display() {
8282
System.out.println(this.root.height);
8383
}
8484
private void display (Node node) {
85-
Strings str="";
85+
String str="";
8686
if(node.left!=null)
8787
str+=node.left.data+"=>";
8888
else

0 commit comments

Comments
 (0)