-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBST.py
45 lines (37 loc) · 1.13 KB
/
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
# Python program to demonstrate insert operation in binary search tree
# A utility class that represents an individual node in a BST
class Node:
def __init__(self,key):
self.left = None
self.right = None
self.val = key
# A utility function to insert a new node with the given key
def insert(root,node):
if root is None:
root = node
else:
if root.val < node.val:
if root.right is None:
root.right = node
else:
insert(root.right, node)
else:
if root.left is None:
root.left = node
else:
insert(root.left, node)
# A utility function to do inorder tree traversal
def inorder(root):
if root:
inorder(root.left)
print(root.val)
inorder(root.right)
r = Node("Man")
insert(r,Node("hello"))
insert(r,Node("hell"))
insert(r,Node("Monkey"))
insert(r,Node("Eight"))
insert(r,Node("Elephant"))
insert(r,Node("Hello"))
# Print inoder traversal of the BST
inorder(r)