12. Maximum Depth of Binary Tree
easyAsked at InstacartCompute the max depth of a binary tree — Instacart uses this to gate basic recursion against later store-hierarchy depth questions.
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 the root down to the farthest leaf node.
Constraints
The number of nodes in the tree is in the range [0, 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. Level order BFS
Push root into a queue, increment depth per level processed.
- Time
- O(n)
- Space
- O(w)
if (!root) return 0;
let q = [root], depth = 0;
while (q.length) {
const next = [];
for (const n of q) { if (n.left) next.push(n.left); if (n.right) next.push(n.right); }
q = next; depth++;
}
return depth;Tradeoff:
2. DFS recursion
Max depth = 1 + max of subtree depths.
- Time
- O(n)
- Space
- O(h)
function maxDepth(root) {
if (!root) return 0;
return 1 + Math.max(maxDepth(root.left), maxDepth(root.right));
}Tradeoff:
Instacart-specific tips
Instacart will ask why you'd choose DFS vs BFS — frame it around how the aisle-tree depth bounds shopper UI breadcrumbs.
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 Instacart interview questions under real-loop conditions with instant feedback on your reasoning, complexity claims, and code.
Practice these live with InterviewChamp.AI →