Binary Search Tree – Lowest Common Ancestor – Python

The last problem in the Trees chapter of Programming Interviews Exposed was about finding the lowest common ancestor between two nodes of a binary search tree. Starting from the head, if you find that the nodes that you’re looking for straddle the node you’re on, then you’ve found your lowest common ancestor. If they’re both on one side or the other, grab your child on that side, and recurse. The key is realizing that when you go left (for example) there will be no result on the left branch bigger than the right’s universe.

  1. def commonAncestor(node1,node2,head):
  2. """
  3. >>> node1=Node(1)
  4. >>> node4=Node(4)
  5. >>> node3=Node(3,node1,node4)
  6. >>> node7=Node(7)
  7. >>> node5=Node(5,node3,node7)
  8. >>> commonAncestor(node1,node7,node5).value
  9. 5
  10. >>> commonAncestor(node7,node1,node5).value
  11. 5
  12. >>> commonAncestor(node1,node5,node5).value
  13. 5
  14. >>> commonAncestor(node1,node4,node5).value
  15. 3
  16. >>> commonAncestor(node7,node7,node5).value
  17. 7
  18. """
  19. maxNode=max([node1,node2], key=lambda item: item.value)
  20. minNode=min([node1,node2], key=lambda item: item.value)
  21. if head==None: return
  22. if (minNode.value <= head.value) & (maxNode.value >= head.value):
  23. return head
  24. if (minNode.value <= head.value) & (maxNode.value <= head.value):
  25. return commonAncestor(node1,node2,head.left)
  26. if (minNode.value >= head.value) & (maxNode.value >=head.value):
  27. return commonAncestor(minNode,maxNode,head.right)
  28. class Node:
  29. def __init__(self,value,left=None,right=None):
  30. self.value=value
  31. self.left=left
  32. self.right=right
  33. import doctest
  34. doctest.testmod()
def commonAncestor(node1,node2,head):
    """ 
    >>> node1=Node(1)
    >>> node4=Node(4)
    >>> node3=Node(3,node1,node4)
    >>> node7=Node(7)
    >>> node5=Node(5,node3,node7)
    >>> commonAncestor(node1,node7,node5).value
    5
    >>> commonAncestor(node7,node1,node5).value
    5
    >>> commonAncestor(node1,node5,node5).value
    5
    >>> commonAncestor(node1,node4,node5).value
    3
    >>> commonAncestor(node7,node7,node5).value
    7
    """
    maxNode=max([node1,node2], key=lambda item: item.value)
    minNode=min([node1,node2], key=lambda item: item.value)
    if head==None: return
    if (minNode.value <= head.value) & (maxNode.value >= head.value):
        return head
    if (minNode.value <= head.value) & (maxNode.value <= head.value): 
        return commonAncestor(node1,node2,head.left) 
    if (minNode.value >= head.value) & (maxNode.value >=head.value):
        return commonAncestor(minNode,maxNode,head.right)

class Node:
    def __init__(self,value,left=None,right=None):
        self.value=value
        self.left=left
        self.right=right

import doctest                                                                                                                                                                                                  
doctest.testmod()
This entry was posted in programming and tagged , , , . Bookmark the permalink.

2 Responses to Binary Search Tree – Lowest Common Ancestor – Python

  1. pracha says:

    why r u assumin it to be bst

  2. Anonymous says:

    What if:
    node1.value>=head.value & node2.value<=head.value

    Your code doesn't cover that case.

Leave a Reply

Your email address will not be published. Required fields are marked *