Unit 8 Session 1 (Click for link to problem statements)
Looking for the recursive version of this problem? Go to Find Rightmost Node I
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(1, None, TreeNode(2, None, TreeNode(3)))
Output: 3
Explanation: The rightmost node in the tree is the node with value 3, reached by iterative traversal.
EDGE CASE
Input: TreeNode(1)
Output: 1
Explanation: The tree has only one node, which is also the rightmost 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 involves a straightforward iterative traversal to locate the rightmost node, which aligns with iterative depth-first search methods.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Iteratively traverse to the rightmost node using a while loop until no right child is available.
1) Start at the root.
2) Use a loop to follow the right child until it no longer exists.
3) Return the value of the node where the loop terminates.
⚠️ Common Mistakes
Implement the code to solve the algorithm.
def right_most(root):
"
Return the value of the rightmost node in the binary tree rooted at `root`.
If the tree is empty, return None.
"
if root is None:
return None
# Traverse down to the rightmost child
current = root
while current.right is not None:
current = current.right
return current.val
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(n)
in the worst case where n is the height of the tree, particularly if it is skewed to one side.O(1)
as no additional space is used apart from the input tree structure.