mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-02-04 04:23:32 +08:00
Resolve build errors & cleanup structure (#2334)
This commit is contained in:
@@ -82,7 +82,7 @@ public class AVLTree {
|
||||
System.out.println(this.root.height);
|
||||
}
|
||||
private void display (Node node) {
|
||||
String str="";
|
||||
Strings str="";
|
||||
if(node.left!=null)
|
||||
str+=node.left.data+"=>";
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user