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)), key = 7, value = "new"
Output: TreeNode structure including new TreeNode(7) under TreeNode(5).
Explanation: Node 7 does not exist, it is inserted in the correct position to maintain BST properties.
EDGE CASE
Input: TreeNode(10, TreeNode(5), TreeNode(15)), key = 5, value = "updated"
Output: TreeNode(10, TreeNode(5, value="updated"), TreeNode(15))
Explanation: Key 5 exists, so its value is updated instead of inserting a new node.
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 example of inserting or updating nodes in a binary search tree, crucial for maintaining sorted data structures efficiently.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Traverse the tree according to BST rules (left for less, right for more) to find the correct position for the new node or update an existing one.
1) If the tree is empty, insert the new node as the root.
2) If the key of the current node is greater than the new key, recurse left.
3) If the key of the current node is less than the new key, recurse right.
4) If the key matches, update the node’s value.
⚠️ Common Mistakes
Implement the code to solve the algorithm.
def insert(root, key, value):
"
Insert a new node with the given `key` and `value` into the binary search tree rooted at `root`.
Return the root of the modified tree.
"
if root is None:
return TreeNode(key, value)
if key < root.val:
root.left = insert(root.left, key, value)
elif key > root.val:
root.right = insert(root.right, key, value)
else:
# Key exists, update the node's value
root.val = value
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, potentially O(log n)
in a balanced BST but could degrade to O(n)
if the tree becomes skewed.O(h)
due to recursion depth, which may also degrade depending on the tree’s balance.