Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/kunal-kushwaha/DSA-Bootcamp-Java
/ main
Method
main
lectures/20-trees/code/AVL/Main.java:2–10 ·
view source on GitHub ↗
(String[] args)
Source
from the content-addressed store, hash-verified
1
class
Main {
2
public
static
void
main(String[] args) {
3
AVL tree =
new
AVL();
4
5
for
(
int
i=0; i < 1000; i++) {
6
tree.insert(i);
7
}
8
9
System.out.println(tree.height());
10
}
11
}
Callers
nothing calls this directly
Calls
2
insert
Method · 0.95
height
Method · 0.95
Tested by
no test coverage detected