Problems

Binary Search Tree Iterator #

Implement the BSTIterator class that represents an iterator over the in-order traversal of a binary search tree (BST):

  1. BSTIterator(TreeNode root) Initializes an object of the BSTIterator class. The root of the BST is given as part of the constructor. The pointer should be initialized to a non-existent number smaller than any element in the BST.
  2. boolean hasNext() Returns true if there exists a number in the traversal to the right of the pointer, otherwise returns false.
  3. int next() Moves the pointer to the right, then returns the number at the pointer.

Notice that by initializing the pointer to a non-existent smallest number, the first call to next() will return the smallest element in the BST.

You may assume that next() calls will always be valid. That is, there will be at least a next number in the in-order traversal when next() is called.

Approach 1: Flattening the BST

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class BSTIterator:

    def __init__(self, root: Optional[TreeNode]):
        self.sorted_nodes = []
        self.index = -1
        self._inorder(root)
    
    def _inorder(self, root):
        if not root:
            return
        self._inorder(root.left)
        self.sorted_nodes.append(root.val)
        self._inorder(root.right)

    def next(self) -> int:
        self.index += 1
        return self.sorted_nodes[self.index ]

    def hasNext(self) -> bool:
        return self.index + 1 < len(self.sorted_nodes)

Approach 2: Controlled Recursion

class BSTIterator:

    def __init__(self, root: Optional[TreeNode]):
        self.stacked_nodes = []
        self._left_inorder(root)
    
    def _left_inorder(self, root):
        if not root:
            return
        self.stacked_nodes.append(root)
        self._left_inorder(root.left)
        

    def next(self) -> int:
        node = self.stacked_nodes.pop()
        if node.right:
            self._left_inorder(node.right)
        return node.val

    def hasNext(self) -> bool:
        return len(self.stacked_nodes) > 0