Programming Interview Questions 7: Binary Search Tree Check

This is a very common interview question. Given a binary tree, check whether it’s a binary search tree or not. Simple as that..

The first solution that comes to mind is, at every node check whether its value is larger than or equal to its left child and smaller than or equal to its right child (assuming equals can appear at either left or right). However, this approach is erroneous because it doesn’t check whether a node violates any condition with its grandparent or any of its ancestors. The following tree would be incorrectly classified as a binary search tree, the algorithm won’t be able to detect the inconsistency between 3 and 4:

So, we should keep track of the minimum and maximum values a node can take. And at each node we will check whether its value is between the min and max values it’s allowed to take. The root can take any value between negative infinity and positive infinity. At any node, its left child should be smaller than or equal than its own value, and similarly the right child should be larger than or equal to. So during recursion, we send the current value as the new max to our left child and send the min as it is without changing. And to the right child, we send the current value as the new min and send the max without changing. This approach leads to the following code:

class Node:
    def __init__(self, val=None):
        self.left, self.right, self.val = None, None, val
 
INFINITY = float("infinity")
NEG_INFINITY = float("-infinity")
 
def isBST(tree, minVal=NEG_INFINITY, maxVal=INFINITY):
    if tree is None:
        return True
 
    if not minVal <= tree.val <= maxVal:
        return False
 
    return isBST(tree.left, minVal, tree.val) and \
           isBST(tree.right, tree.val, maxVal)

There’s an equally good alternative solution. If a tree is a binary search tree, then traversing the tree inorder should lead to sorted order of the values in the tree. So, we can perform an inorder traversal and check whether the node values are sorted or not. Here is the code:

def isBST2(tree, nodes=[NEG_INFINITY]):
    if tree is None:
        return True
 
    if not isBST2(tree.left, nodes):
        return False   
 
    if tree.val < nodes[-1]:
        return False
 
    nodes.append(tree.val)
 
    return isBST2(tree.right, nodes)

I personally like this question a lot because it’s simple (but not trivial) and demonstrates the basic knowledge of binary search trees and tree traversals.

VN:F [1.9.10_1130]
Rating: 10.0/10 (1 vote cast)
Programming Interview Questions 7: Binary Search Tree Check, 10.0 out of 10 based on 1 rating

This entry was posted in Programming Interview. Bookmark the permalink.

2 Responses to Programming Interview Questions 7: Binary Search Tree Check

  1. Igor Yagolnitser says:

    Hey Arden,

    Didn’t know you had this blog, but that’s a great idea!
    I’d like to contribute to it when I get some time.
    As for the in order traversal above: where are you adding to the node list?
    A special note about these types of problems when interviewing at Microsoft: while algorithmically your solution should be recursive, your implementation should be prefixed by: “the problem with the recursive implementation is that it’s only good when you know the depth, otherwise you can easily blow the stack”. This shows you understand the practical difference between writing code in a classroom and in a production environment. If the interviewer then says: “let’s say you don’t need to worry about that”, you proceed with your solution, but twice in my own experience the problem was precisely about whether I would just rush to implement the obvious and well known book solution, or stop to consider the real world implications.
    Just a thought.
    Good luck.

    P.S. Could not post a comment.

    • Arden says:

      Hi Igor, thanks for the comment. You’re right about recursion and stack space. I didn’t mention that because both of the algorithms are recursive. If we would like to code it iteratively, than we have to maintain a queue, which will use the heap space. But as you said, it’s definitely useful to first step back and thoroughly analyze all the possible solutions with their real world implications, and then start coding the actual algorithm.

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">