2nd Largest Element in A Binary Search Tree
2nd Largest Element in A Binary Search Tree
class BinaryTreeNode:
Python
Gotchas
Our first thought might be to do an in-order traversal of the BST ↴ and return the
second-to-last item. This means looking at every node in the BST. That would take O(n)O(n)
time and O(h)O(h) space, where hh is the max height of the tree (which is lgnlgn if the tree is
A clean recursive implementation will take O(h)O(h) space in the call stack ↴ , but we can
Breakdown
Let's start by solving a simplified version of the problem and see if we can adapt our
approach from there. How would we find the largest element in a BST?
A reasonable guess is to say the largest element is simply the "rightmost" element.
So maybe we can start from the root and just step down right child pointers until we can't
anymore (until the right child is None). At that point the current node is the largest in the
whole tree.
If the largest element were not the "rightmost," then the largest element would either:
1. If the node is in some ancestor node's left subtree it's smaller than that ancestor
node, so it's not the largest.
2. If the node has a right child that child is larger than it, so it's not the largest.
1. If there is a right child, that node and the subtree below it are all greater than the
current node. So step down to this child and recurse.
2. Else there is no right child and we're already at the "rightmost" element, so we
return its value.
def largest(root_node):
if root_node.right:
return largest(root_node.right)
return root_node.value
Python
Okay, so we can find the largest element. How can we adapt this approach to find the
secondlargest element?
Our first thought might be, "it's simply the parent of the largest element!" That seems
obviously true when we imagine a nicely balanced tree like this one:
. ( 5 )
/ \
(3) (8)
/ \ / \
(1) (4) (7) (9)
. ( 5 )
/ \
(3) (8)
/ \ / \
(1) (4) (7) (12)
/
(10)
/ \
(9) (11)
Here the parent of our largest is 8, but the second largest is 11!
Drat, okay so the second largest isn't necessarily the parent of the largest...back to the
drawing board...
Wait. No. The second largest is the parent of the largest if the largest does not have a left
subtree. If we can handle the case where the largest does have a left subtree, we can handle
So let's try sticking with this. How do we find the second largest when the largest has a left
subtree?
It's the largest item in that left subtree! Woah, we freaking just wrote a function for finding
def largest(root_node):
if root_node.right is not None:
return largest(root_node.right)
return root_node.value
def find_second_largest(root_node):
# case: empty tree
if root_node is None:
return None
Python
Okay awesome. This'll work. It'll take O(h)O(h) time (where hh is the height of the tree) and
O(h)O(h) space.
But that hh space in the call stack ↴ is avoidable. How can we get this down to constant
space?
Solution
We start with a function for getting the largest value. The largest value is simply the
"rightmost" one, so we can get it in one walk down the tree by traversing rightward until we
def find_largest(root_node):
current = root_node
while current:
if not current.right:
return current.value
current = current.right
Python
With this in mind, we can also find the second largest in one walk down the tree. At each
1. If we have a left subtree but not a right subtree, then the current node is the largest
overall (the "rightmost") node. The second largest element must be the largest
element in the left subtree. We use our get_largest() function above to find the
largest in that left subtree!
2. If we have a right child, but that right child node doesn't have any children, then
the right child must be the largest element and our current node must be the
second largest element!
3. Else, we have a right subtree with more than one element, so the largest and
second largest are somewhere in that subtree. So we step right.
def find_largest(root_node):
current = root_node
while current:
if not current.right:
return current.value
current = current.right
def find_second_largest(root_node):
current = root_node
while current:
# case: current is largest and has a left subtree
# 2nd largest is the largest in that subtree
if current.left and not current.right:
return find_largest(current.left)
current = current.right
Python
Complexity
We're doing one walk down our BST, which means O(h)O(h) time, where hh is the height of
the tree (again, that's O(\lg{n})O(lgn) if the tree is balanced, O(n)O(n) otherwise). O(1)O(1)
space.