-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinarytree.py
More file actions
84 lines (73 loc) · 1.47 KB
/
binarytree.py
File metadata and controls
84 lines (73 loc) · 1.47 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
class Node:
def __init__(self,data):
self.left = None
self.right = None
self.key = data
def insert(root,node):
if root is None:
root = node
else:
if node.key < root.key:
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)
def inorder(root):
if root:
inorder(root.left)
print(root.key)
inorder(root.right)
r = Node(50)
insert(r,Node(30))
insert(r,Node(20))
insert(r,Node(70))
inorder(r)
'''
# 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)
# Driver program to test the above functions
# Let us create the following BST
# 50
# / \
# 30 70
# / \ / \
# 20 40 60 80
r = Node(50)
insert(r,Node(30))
insert(r,Node(20))
insert(r,Node(40))
insert(r,Node(70))
# Print inoder traversal of the BST
inorder(r)
'''