-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBST Insertion.py
56 lines (45 loc) · 1.27 KB
/
BST Insertion.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
class Node:
def __init__(self, info):
self.info = info
self.left = None
self.right = None
self.level = None
def __str__(self):
return str(self.info)
def preOrder(root):
if root == None:
return
print (root.info, end=" ")
preOrder(root.left)
preOrder(root.right)
class BinarySearchTree:
def __init__(self):
self.root = None
#Node is defined as
#self.left (the left child of the node)
#self.right (the right child of the node)
#self.info (the value of the node)
def insert(self, val):
if self.root is None:
self.root = Node(val)
return
current = self.root
while True:
if current.info > val:
if current.left:
current = current.left
else:
current.left = Node(val)
return
else:
if current.right:
current = current.right
else:
current.right = Node(val)
return
tree = BinarySearchTree()
t = int(input())
arr = list(map(int, input().split()))
for i in range(t):
tree.insert(arr[i])
preOrder(tree.root)