-
Notifications
You must be signed in to change notification settings - Fork 619
/
Copy pathkth_largest_in_bst.py
52 lines (39 loc) · 997 Bytes
/
kth_largest_in_bst.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
Print the kth largest element in a BST
The inorder traversal gives elements of BST in ascending order. Do reverse inorder
(Right-Node-Left) and print the kth element
"""
class Node():
def __init__(self, val):
self.val = val
self.left = None
self.right = None
def reverse_inorder(root, k):
if not root:
return None
counter = 1
stack = []
while True:
if root:
stack.append(root)
root = root.right
else:
if not stack:
break
root = stack.pop()
if counter == k:
return root.val
else:
counter += 1
root = root.left
return "not enough elements in BST"
root = Node(5)
root.left = Node(3)
root.right = Node(7)
root.left.left = Node(2)
root.left.right = Node(4)
root.right.right = Node(8)
root.right.eft = Node(6)
k = int(input("Enter K : "))
ans = reverse_inorder(root, k)
print(ans)