InterviewStack.io LogoInterviewStack.io

Trees and Binary Search Trees Questions

Hierarchical structures: binary trees, binary search trees, balanced trees, and tries. Covers traversal orders (in/pre/post-order, level-order), insertion and deletion invariants, and using tree properties to achieve logarithmic search. A core mid-difficulty interview area and the basis for many indexing and lookup systems.

HardTechnical
54 practiced

Given two nodes in a binary tree, return their lowest common ancestor. The tree is not guaranteed to be a BST, and the input may reference nodes that are not present. How would you design the function so it never reports an ancestor unless both targets are actually in the tree?

EasyTechnical
53 practiced

You are given the root of a binary tree in Python. Implement a function that returns the node values in left, then node, then right order. After you write the recursive version, explain how you would handle an empty tree and why the solution may fail on a pathologically deep input.

MediumTechnical
88 practiced

Recursion is off the table because the tree may be too deep. In Python, implement a traversal that visits both children before the node itself and returns the values in that order. Walk through how your stack state changes as the algorithm runs.

HardTechnical
59 practiced

You are reviewing a function that decides whether a binary tree is height-balanced. The current code recomputes subtree heights over and over, and it becomes slow on a skewed input. How would you rewrite it so each subtree is processed once, and how would you stop the recursion early when imbalance is detected?

HardTechnical
48 practiced

In Python, some customer trees are so deep that a recursive solution might crash even if the algorithm is otherwise correct. For the traversal and path problems in this topic, what engineering changes would you make before shipping the code to production?

Unlock Full Question Bank

Get access to all 8 Trees and Binary Search Trees interview questions and detailed answers.

Sign in to Continue

Join thousands of developers preparing for their dream job.