master-algorithms-py/trees/bst_pre_sucessor.py
2023-08-03 13:56:53 -07:00

24 lines
286 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl
def successor(root):
root = root.right
while root.left:
root = root.left
return root
def predecessor(root):
root = root.left
while root.right:
root = root.right
return root