-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-tree.py
64 lines (53 loc) · 1.77 KB
/
binary-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
57
58
59
60
61
62
63
64
#Binary tree practice from Udacity course "Data Structures and Algorithms in Python"
class Node(object):
def __init__(self, value):
self.value = value
self.left = None
self.right = None
class BinaryTree(object):
def __init__(self, root):
self.root = Node(root)
def search(self, find_val):
"""Return True if the value
is in the tree, return
False otherwise."""
return self.preorder_search(self.root, find_val)
def print_tree(self):
"""Print out all tree nodes
as they are visited in
a pre-order traversal."""
traversal = self.preorder_print(self.root, [])
return '-'.join(traversal)
def preorder_search(self, start, find_val):
"""Helper method - use this to create a
recursive search solution."""
if start:
if start.value == find_val:
return True
leftFound = self.preorder_search(start.left, find_val)
rightFound = self.preorder_search(start.right, find_val)
return leftFound or rightFound
else:
return False
def preorder_print(self, start, traversal):
"""Helper method - use this to create a
recursive print solution."""
if start:
traversal.append(str(start.value))
self.preorder_print(start.left, traversal)
self.preorder_print(start.right, traversal)
return traversal
# Set up tree
tree = BinaryTree(1)
tree.root.left = Node(2)
tree.root.right = Node(3)
tree.root.left.left = Node(4)
tree.root.left.right = Node(5)
# Test search
# Should be True
print tree.search(4)
# Should be False
print tree.search(6)
# Test print_tree
# Should be 1-2-4-5-3
print tree.print_tree()