Concept Flow - Height and depth of trees
Start at Root Node
Depth of Root = 0
Move to Child Node
Depth of Child = Depth of Parent + 1
Repeat for all nodes
Calculate Height
Height = Max Depth among all nodes
End
Start from the root node with depth 0, move down each child increasing depth by 1, and find the height as the maximum depth found.