Unit 9 Session 2 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
- Established a set (2-3) of test cases to verify their own solution later.
- Established a set (1-2) of edge cases to verify their solution handles complexities.
- Have fully understood the problem and have no clarifying questions.
- Have you verified any Time/Space Constraints for this problem?
Can the tree be empty?
What should be returned if the tree has only one node?
HAPPY CASE
3 (root)
/ \
9 20
/ \
15 7
Input: root
Output: 2
Explanation: The minimum depth path is [3, 9] with length 2.
EDGE CASE
Input: None
Output: 0
Explanation: The tree is empty, so return 0.
Match what this problem looks like to known categories of problems, e.g. Linked List or Dynamic Programming, and strategies or patterns in those categories.
For Tree problems, we want to consider the following approaches:
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Use a BFS approach to traverse the tree level by level. Use a queue to keep track of nodes and their depths. The first time a leaf node is encountered, return its depth.
1) If the tree is empty, return 0.
2) Create an empty queue and add the root node with depth 1.
3) While the queue is not empty:
a) Pop the next node and its depth from the queue.
b) If the node is a leaf, return its depth.
c) Add the left and right children to the queue with their depths incremented by 1.
4) Return 0 (this line will never be reached if the input tree is valid).
⚠️ Common Mistakes
Implement the code to solve the algorithm.
from collections import deque
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
def min_depth(root):
if not root:
return 0
queue = deque() # The queue stores tuples of (node, depth)
queue.append((root, 1))
while queue:
node, depth = queue.popleft()
# Check if the current node is a leaf node
if not node.left and not node.right:
return depth
# Add the left child to the queue if it exists
if node.left:
queue.append((node.left, depth + 1))
# Add the right child to the queue if it exists
if node.right:
queue.append((node.right, depth + 1))
return 0 # This line will never be reached if the input tree is valid
Review the code by running specific example(s) and recording values (watchlist) of your code's variables along the way.
Evaluate the performance of your algorithm and state any strong/weak or future potential work.