0
0
DSA C++programming~10 mins

Height of Binary Tree in DSA C++ - Execution Trace

Choose your learning style9 modes available
Concept Flow - Height of Binary Tree
Start at root node
Is node null?
YesReturn 0
No
Find height of left subtree
Find height of right subtree
Compare left and right heights
Return max(left, right) + 1
End
Start at the root, recursively find the height of left and right subtrees, then return the larger height plus one.
Execution Sample
DSA C++
int height(Node* root) {
  if (root == nullptr) return 0;
  int leftHeight = height(root->left);
  int rightHeight = height(root->right);
  return std::max(leftHeight, rightHeight) + 1;
}
This code calculates the height of a binary tree by recursively checking left and right subtrees.
Execution Table
StepOperationNode VisitedLeft HeightRight HeightHeight ReturnedTree State
1Start at root1---1 / \ 2 3 / 4
2Go left subtree2---2 / 4
3Go left subtree4---4
4Left child nullnull0-0null
5Right child nullnull-00null
6Return height for node 440014
7Right child nullnull--0null
8Return height for node 221022 / 4
9Go right subtree3---3
10Left child nullnull0-0null
11Right child nullnull-00null
12Return height for node 330013
13Return height for root node 112131 / \ 2 3 / 4
14End----Height = 3
💡 All nodes visited, recursion unwound, final height returned as 3
Variable Tracker
VariableStartAfter Step 4After Step 6After Step 8After Step 12After Step 13Final
rootNode 1Node 4Node 2Node 1Node 1Node 1null
leftHeight-012222
rightHeight----111
heightReturned-012133
Key Moments - 3 Insights
Why do we return 0 when the node is null?
Because a null node means no tree exists there, so its height is 0. This is shown in steps 4 and 5 where left and right children are null, returning 0.
Why do we add 1 after taking the max of left and right heights?
Adding 1 counts the current node itself. For example, in step 13, max left height is 2 and right height is 1, so height is 3 including the root.
How does recursion help find the height?
Recursion breaks the problem into smaller parts: find height of left and right subtrees first, then combine results. This is visible in steps 2-12 where recursive calls happen.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what height is returned for node 4 at step 6?
A1
B0
C2
D3
💡 Hint
Check the 'Height Returned' column at step 6 in the execution table.
At which step does the recursion return the height for the root node?
AStep 12
BStep 8
CStep 13
DStep 6
💡 Hint
Look for the step where 'Node Visited' is 1 and height returned is final.
If the right subtree of node 1 had height 3 instead of 1, what would be the final height returned?
A3
B4
C2
D1
💡 Hint
Height is max(leftHeight, rightHeight) + 1; check variable_tracker for how height is computed.
Concept Snapshot
Height of Binary Tree:
- Height = number of nodes on longest path from root to leaf
- Base case: null node height = 0
- Recursively find left and right subtree heights
- Return max(leftHeight, rightHeight) + 1
- Uses post-order traversal (left, right, root)
Full Transcript
The height of a binary tree is found by starting at the root node and checking if it is null. If null, height is 0. Otherwise, recursively find the height of the left subtree and the right subtree. Then, take the larger of these two heights and add 1 to count the current node. This process continues until all nodes are visited and the maximum height is returned. The execution table shows each step visiting nodes, returning heights for null children as 0, and combining results upwards. Key moments include understanding why null nodes return 0, why we add 1, and how recursion breaks down the problem. The final height for the example tree is 3.