Binary Search Tree Iterator Sequel - Facebook Top Interview Questions


Problem Statement :


Implement a binary search tree iterator with the following methods:

next returns the next smallest element in the tree

hasnext returns whether there is a next element in the iterator

prev returns the next bigger element in the tree

hasprev returns whether there is a previous element in the iterator

For example, given the following tree root

   4
  / \
 2   7
    /
   5

Then we have

it = BSTIterator(root)

it.next() == 2

it.next() == 4

it.hasnext() == True

it.next() == 5

it.next() == 7

it.hasnext() == False

it.hasprev() == True

it.prev() == 5

Example 1

Input

methods = ["constructor", "hasnext", "hasnext", "hasprev", "hasprev", "next", "hasnext", "hasnext", 
"hasprev"]

arguments = [[[0, null, [2, [1, null, null], null]]], [], [], [], [], [], [], [], []]`

Output

[None, True, True, False, False, 0, True, True, False]



Solution :



title-img




                        Solution in C++ :

class BSTIterator {  // Time: O(1) amortized, in worst case O(H), Space: O(N)
    private:
    stack<Tree*> next_stack;
    vector<int> history;
    int index;

    public:
    BSTIterator(Tree* root) {
        index = -1;

        while (root) {
            next_stack.push(root);
            root = root->left;
        }
    }

    int next() {
        if (index + 1 < history.size()) {
            index++;  // Move to next element in history and return it
            return history[index];
        }

        Tree* next_node = next_stack.top();
        next_stack.pop();
        int value = next_node->val;

        next_node = next_node->right;
        while (next_node) {
            next_stack.push(next_node);
            next_node = next_node->left;
        }

        index++;
        history.push_back(value);
        return value;
    }

    bool hasnext() {
        return !next_stack.empty();
    }

    int prev() {
        // Move to previous element in history and return it
        index--;
        return history[index];
    }

    bool hasprev() {
        return index > 0;
    }
};
                    




                        Solution in Python : 
                            
class BSTIterator:
    def __init__(self, root):
        self.nodes, self.cur = [], -1
        # get nodes
        def dfs(root):
            if root:  # inorder -----Left Root Right----
                dfs(root.left), self.nodes.append(root.val), dfs(root.right)

        dfs(root)
        self.size = len(self.nodes)

    def next(self):
        self.cur += 1
        return self.nodes[self.cur] if self.cur < self.size else None

    def hasnext(self):
        return self.cur < self.size - 1

    def prev(self):
        self.cur -= 1
        return self.nodes[self.cur] if self.cur >= 0 else None

    def hasprev(self):
        return self.cur > 0
                    


View More Similar Problems

Balanced Brackets

A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are considered to be a matched pair if the an opening bracket (i.e., (, [, or {) occurs to the left of a closing bracket (i.e., ), ], or }) of the exact same type. There are three types of matched pairs of brackets: [], {}, and (). A matching pair of brackets is not balanced if the set of bra

View Solution →

Equal Stacks

ou have three stacks of cylinders where each cylinder has the same diameter, but they may vary in height. You can change the height of a stack by removing and discarding its topmost cylinder any number of times. Find the maximum possible height of the stacks such that all of the stacks are exactly the same height. This means you must remove zero or more cylinders from the top of zero or more of

View Solution →

Game of Two Stacks

Alexa has two stacks of non-negative integers, stack A = [a0, a1, . . . , an-1 ] and stack B = [b0, b1, . . . , b m-1] where index 0 denotes the top of the stack. Alexa challenges Nick to play the following game: In each move, Nick can remove one integer from the top of either stack A or stack B. Nick keeps a running sum of the integers he removes from the two stacks. Nick is disqualified f

View Solution →

Largest Rectangle

Skyline Real Estate Developers is planning to demolish a number of old, unoccupied buildings and construct a shopping mall in their place. Your task is to find the largest solid area in which the mall can be constructed. There are a number of buildings in a certain two-dimensional landscape. Each building has a height, given by . If you join adjacent buildings, they will form a solid rectangle

View Solution →

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →