-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary_search_tree.py
56 lines (45 loc) · 1.43 KB
/
binary_search_tree.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 TreeNode(object):
def __init__(self, value, left=None, right=None):
self.val = value
self.left = left
self.right = right
class BinarySearchTree(object):
def __init__(self):
self.root = None
def isNodeFull(self, node):
if node.left and node.right:
return True
return False
def insert(self, val):
node = TreeNode(val)
if self.root is None:
self.root = node
else:
curr = self.root
while True:
if val <= curr.val:
if curr.left is None:
curr.left = node
break
curr = curr.left
else:
if curr.right is None:
curr.right = node
break
curr = curr.right
def show(self):
result = []
result = self._inOrderTraversal(self.root, result)
print([node.val for node in result])
def _inOrderTraversal(self, rootNode, result=[]):
if rootNode:
self._inOrderTraversal(rootNode.left, result)
result.append(rootNode)
self._inOrderTraversal(rootNode.right, result)
return result
if __name__ == "__main__":
tree = BinarySearchTree()
inputList = [10, 5, 12, 4, 6, 11, 13]
for val in inputList:
tree.insert(val)
tree.show()