mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-19 17:54:42 +08:00
Modified Data Structures/Trees folder .java file name and class name
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
public class AVLtree {
|
||||
public class AVLTree {
|
||||
|
||||
private Node root;
|
||||
|
||||
@ -200,7 +200,7 @@ public class AVLtree {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
AVLtree tree = new AVLtree();
|
||||
AVLTree tree = new AVLTree();
|
||||
|
||||
System.out.println("Inserting values 1 to 10");
|
||||
for (int i = 1; i < 10; i++)
|
||||
|
Reference in New Issue
Block a user