I am just wondering if someone might be able to clarify the definition of a balanced tree for me. I have that \"a tree is balanced if each sub-tree is balanced and the heigh
The height of a node in a tree is the length of the longest path from that node downward to a leaf, counting both the start and end vertices of the path.
A node in a tree is height-balanced if the heights of its subtrees differ by no more than 1.
A tree is height-balanced if all of its nodes are height-balanced.