We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af13a4 commit 13d4fd2Copy full SHA for 13d4fd2
aVL/src/main/java/com/mycompany/avl/AVL.java
@@ -354,6 +354,13 @@ public static void main(String[] args) {
354
System.out.println("New Insert: " + 1);
355
a.insert(1);
356
a.preOrder();
357
-
+ System.out.println("--------------------------------------------");
358
+ System.out.println("New delete: " + 27);
359
+ a.delete(27);
360
+ a.preOrder();
361
362
+ System.out.println("New delete: " + 11);
363
+ a.delete(11);
364
365
}
366
0 commit comments