MCPcopy
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

insertMethod · 0.95
rotateMethod · 0.95
rightRotateMethod · 0.95
leftRotateMethod · 0.95
balancedMethod · 0.95
mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected