12. Maximum Depth of Binary Tree
easyAsked at SpotifyFind the maximum depth of a binary tree.
By Alex Chen, Founder, InterviewChamp.AI · Last verified
Problem
Given the root of a binary tree, return its maximum depth — the number of nodes along the longest path from root to a leaf.
Constraints
0 <= nodes <= 10^4-100 <= Node.val <= 100
Examples
Example 1
root=[3,9,20,null,null,15,7]3Example 2
root=[1,null,2]2Approaches
1. BFS level count
Level-order traversal counting levels
- Time
- O(n)
- Space
- O(w)
let depth=0; const q=[root].filter(Boolean);
while(q.length){let n=q.length;while(n--){const x=q.shift();if(x.left)q.push(x.left);if(x.right)q.push(x.right);} depth++;}
return depth;Tradeoff:
2. Recursive DFS
Return 1 + max(left depth, right depth). Tail-rec friendly and trivial to extend to balance checks.
- Time
- O(n)
- Space
- O(h)
function maxDepth(root) {
if (!root) return 0;
return 1 + Math.max(maxDepth(root.left), maxDepth(root.right));
}Tradeoff:
Spotify-specific tips
Spotify uses depth checks when traversing nested playlist-folder hierarchies; mention how depth would bound a recursive walk before they ask the follow-up.
Solve it now
Free. No sign-up. Python and JavaScript run instantly in your browser.
Practice these live with InterviewChamp.AI
Drill Maximum Depth of Binary Tree and other Spotify interview questions under real-loop conditions with instant feedback on your reasoning, complexity claims, and code.
Practice these live with InterviewChamp.AI →