Tree Terminology: Height
- Define tree-related terminologies.
The height of a node is the length of a longest path from to a leaf.

The height of a tree is the height of its root.
We can recursively define the height of a node:
Aside: In some references, the height of a node includes the node. In that case, the height of a leaf is 1.