Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/kunal-kushwaha/DSA-Bootcamp-Java
/ height
Method
height
lectures/20-trees/code/AVL/AVL.java:24–26 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
22
}
23
24
public
int
height() {
25
return
height(root);
26
}
27
private
int
height(Node node) {
28
if
(node == null) {
29
return
-1;
Callers
6
insert
Method · 0.95
rotate
Method · 0.95
rightRotate
Method · 0.95
leftRotate
Method · 0.95
balanced
Method · 0.95
main
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected