-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListBinaryTree.py
43 lines (37 loc) · 1.21 KB
/
ListBinaryTree.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
class ListBinaryTree:
def __init__(self, size: int):
self.customList = size * [None]
self.lastUsedIndex = 0
self.maxSize = size
def insertNode(self, value) -> str:
if self.lastUsedIndex + 1 == self.maxSize:
print("binary tree is full")
return "Binary Tree Is Full"
self.customList[self.lastUsedIndex+1] = value
self.lastUsedIndex += 1
print("successfully inserted")
return "successfully inserted"
def traverse(self):
for val in self.customList:
print(val)
def linearsearch(self, value):
for val in self.customList:
if val == value:
print(f"your {val} was found")
return val
def preOrderTraversal(self, index: int):
if index > self.lastUsedIndex:
return
print(self.customList[index])
self.preOrderTraversal(index*2)
self.preOrderTraversal(index*2+1)
# lbt1 = ListBinaryTree(9)
# lbt1.insertNode("Mood")
# lbt1.insertNode("happy")
# lbt1.insertNode("sad")
# lbt1.insertNode("playing")
# lbt1.insertNode("having fun")
# lbt1.traverse()
# lbt1.traverse()
# lbt1.linearsearch("sad")
# lbt1.preOrderTraversal(1)