MCPcopy
hub / github.com/kunal-kushwaha/DSA-Bootcamp-Java / balanced

Method balanced

lectures/20-trees/code/AVL/AVL.java:151–153  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

149 }
150
151 public boolean balanced() {
152 return balanced(root);
153 }
154
155 private boolean balanced(Node node) {
156 if (node == null) {

Callers

nothing calls this directly

Calls 1

heightMethod · 0.95

Tested by

no test coverage detected