|
| 1 | +# Author: OMKAR PATHAK |
| 2 | + |
| 3 | +# Input: root node, key |
| 4 | +# |
| 5 | +# Output: predecessor node, successor node |
| 6 | +# 1. If root is NULL |
| 7 | +# then return |
| 8 | +# 2. if key is found then |
| 9 | +# a. If its left subtree is not null |
| 10 | +# Then predecessor will be the right most |
| 11 | +# child of left subtree or left child itself. |
| 12 | +# b. If its right subtree is not null |
| 13 | +# The successor will be the left most child |
| 14 | +# of right subtree or right child itself. |
| 15 | +# return |
| 16 | +# 3. If key is smaller then root node |
| 17 | +# set the successor as root |
| 18 | +# search recursively into left subtree |
| 19 | +# else |
| 20 | +# set the predecessor as root |
| 21 | +# search recursively into right subtree |
| 22 | + |
| 23 | +# Python program to find predecessor and successor in a BST |
| 24 | + |
| 25 | +# A BST node |
| 26 | +class Node(object): |
| 27 | + # Constructor to create a new node |
| 28 | + def __init__(self, data): |
| 29 | + self.data = data |
| 30 | + self.left = None |
| 31 | + self.right = None |
| 32 | + |
| 33 | + # for finding the predecessor and successor of the node |
| 34 | + def findPredecessorAndSuccessor(self, data): |
| 35 | + global predecessor, successor |
| 36 | + predecessor = None |
| 37 | + successor = None |
| 38 | + |
| 39 | + if self is None: |
| 40 | + return |
| 41 | + |
| 42 | + # if the data is in the root itself |
| 43 | + if self.data == data: |
| 44 | + # the maximum value in the left subtree is the predecessor |
| 45 | + if self.left is not None: |
| 46 | + temp = self.left |
| 47 | + if temp.right is not None: |
| 48 | + while(temp.right): |
| 49 | + temp = temp.right |
| 50 | + predecessor = temp |
| 51 | + |
| 52 | + # the minimum of the right subtree is the successor |
| 53 | + if self.right is not None: |
| 54 | + temp = self.right |
| 55 | + while(temp.left): |
| 56 | + temp = temp.left |
| 57 | + successor = temp |
| 58 | + |
| 59 | + return |
| 60 | + |
| 61 | + #if key is smaller than root, go to left subtree |
| 62 | + if data < self.data: |
| 63 | + print('Left') |
| 64 | + self.left.findPredecessorAndSuccessor(data) |
| 65 | + else: |
| 66 | + print('Right') |
| 67 | + self.right.findPredecessorAndSuccessor(data) |
| 68 | + |
| 69 | + def insert(self, data): |
| 70 | + ''' For inserting the data in the Tree ''' |
| 71 | + if self.data == data: |
| 72 | + return False # As BST cannot contain duplicate data |
| 73 | + |
| 74 | + elif data < self.data: |
| 75 | + ''' Data less than the root data is placed to the left of the root ''' |
| 76 | + if self.left: |
| 77 | + return self.left.insert(data) |
| 78 | + else: |
| 79 | + self.left = Node(data) |
| 80 | + return True |
| 81 | + |
| 82 | + else: |
| 83 | + ''' Data greater than the root data is placed to the right of the root ''' |
| 84 | + if self.right: |
| 85 | + return self.right.insert(data) |
| 86 | + else: |
| 87 | + self.right = Node(data) |
| 88 | + return True |
| 89 | + |
| 90 | +if __name__ == '__main__': |
| 91 | + root = Node(50) |
| 92 | + root.insert(30) |
| 93 | + root.insert(20) |
| 94 | + root.insert(40) |
| 95 | + root.insert(70) |
| 96 | + root.insert(60) |
| 97 | + root.insert(80) |
| 98 | + |
| 99 | + # following BST is created |
| 100 | + # 50 |
| 101 | + # / \ |
| 102 | + # 30 70 |
| 103 | + # / \ / \ |
| 104 | + # 20 40 60 80 |
| 105 | + |
| 106 | + root.findPredecessorAndSuccessor(70) |
| 107 | + if (predecessor is not None) and (successor is not None): |
| 108 | + print('Predecessor:', predecessor.data, 'Successor:', successor.data) |
| 109 | + else: |
| 110 | + print('Predecessor:', predecessor, 'Successor:', successor) |
0 commit comments