diff --git a/src/main/java/com/thealgorithms/datastructures/trees/AVLSimple b/src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java similarity index 98% rename from src/main/java/com/thealgorithms/datastructures/trees/AVLSimple rename to src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java index 8eb7191cc..e70abd916 100644 --- a/src/main/java/com/thealgorithms/datastructures/trees/AVLSimple +++ b/src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java @@ -29,7 +29,7 @@ AVLTree tree=new AVLTree(); -public class AVLTree { +public class AVLSimple { private class Node{ int data; int height; @@ -82,7 +82,7 @@ public class AVLTree { System.out.println(this.root.height); } private void display (Node node) { - Strings str=""; + String str=""; if(node.left!=null) str+=node.left.data+"=>"; else