Unit 8 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?
HAPPY CASE
Input: TreeNode(10, TreeNode(5), TreeNode(15, TreeNode(12), TreeNode(20))), key = 15
Output: TreeNode structure with TreeNode(12) replacing the deleted node (15).
Explanation: Node 15 is replaced by its in-order successor, 20.
EDGE CASE
Input: TreeNode(10, TreeNode(5), TreeNode(15)), key = 10
Output: TreeNode structure with TreeNode(15) as the new root.
Explanation: Root node is deleted and replaced by its in-order successor, 15.
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.
This problem is a classic node deletion scenario in a binary search tree, which is fundamental for maintaining the integrity of data structures while allowing dynamic data modification.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Navigate the tree to locate the node to be deleted, then adjust the tree structure based on the node's number of children.
1) If the node to be deleted has no children, simply remove it.
2) If the node has one child, replace the node with its child.
3) If the node has two children, replace the node with its in-order successor and remove the successor from its original position.
4) Maintain the BST properties throughout the process.
⚠️ Common Mistakes
Implement the code to solve the algorithm.
def remove_bst(root, key):
class TreeNode:
def __init__(self, key, value=None, left=None, right=None):
self.key = key
self.val = value
self.left = left
self.right = right
def find_min_node(node):
"""Return the node with the smallest key in this (sub)tree."""
cur = node
while cur and cur.left:
cur = cur.left
return cur
def remove_bst(root, key):
if not root:
return None
if key < root.key:
root.left = remove_bst(root.left, key)
elif key > root.key:
root.right = remove_bst(root.right, key)
else:
# Found the node to delete
if not root.left:
return root.right
if not root.right:
return root.left
# Two children: replace with in-order successor (min of right subtree)
succ = find_min_node(root.right)
# Copy successor's key/value into current node
root.key, root.val = succ.key, succ.val
# Delete the successor node from the right subtree
root.right = remove_bst(root.right, succ.key)
return root
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.
O(h)
where h is the height of the tree. In the worst case for a skewed tree, this could be O(n)
.O(h)
due to recursion, which can become O(n)
in the worst-case scenario.