forked from super30admin/PreCourse-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise_4.py
72 lines (63 loc) · 1.74 KB
/
Exercise_4.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Python program to insert element in binary tree
class Node:
def __init__(self, data):
self.key = data
self.left = None
self.right = None
def inorder(temp):
"""
Inorder traversal of a binary tree
Time Complexity - Linear O(n)
Space Complexity - Linear O(h)
'n' is the number of nodes
"""
if not temp:
return
inorder(temp.left)
print(temp.key)
inorder(temp.right)
def insert(root, key):
"""
function to insert element in binary tree
Time Complexity - O(n)
Space Complexity - Constant O(1)
"""
node = Node(key)
# Firs element in tree
if not root:
root = node
else:
# Keep track of the current and parent node
current = root
parent = None
while True:
parent = current
# Insertion in left sub tree
if node.key < current.key:
current = current.left
# If the left sub tree is empty
if not current:
parent.left = node
return
# Insertion in right sub tree
else:
current = current.right
# If right sub tree is empty
if not current:
parent.right = node
return
# Driver code
if __name__ == '__main__':
root = Node(10)
root.left = Node(11)
root.left.left = Node(7)
root.right = Node(9)
root.right.left = Node(15)
root.right.right = Node(8)
print("Inorder traversal before insertion:", end=" ")
inorder(root)
key = 12
insert(root, key)
print()
print("Inorder traversal after insertion:", end=" ")
inorder(root)