-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzipper.py
151 lines (121 loc) · 4.55 KB
/
zipper.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
r"""
I modified one of the tests because I really think there problem with it (test_dead_end).
I posted an issue about that matter here:
https://github.com/exercism/python/issues/1497
Some information about zippers and this implementation can be found here:
https://github.com/cglacet/exercism-python/tree/master/zipper#implementation-hints-about-my-solution
"""
from textwrap import indent
class BinaryTree:
def __init__(self, value, left, right):
self.value = value
self.left = left
self.right = right
@staticmethod
def from_dict(dict_tree):
if not dict_tree:
return None
return BinaryTree(
dict_tree['value'],
BinaryTree.from_dict(dict_tree['left']),
BinaryTree.from_dict(dict_tree['right']))
def focus_left(self):
return self.left, Context(self.value, None, self.right, is_left=True)
def focus_right(self):
return self.right, Context(self.value, self.left, None)
@staticmethod
def to_dict(tree):
if not tree:
return None
return {
'value': tree.value,
'left': BinaryTree.to_dict(tree.left),
'right': BinaryTree.to_dict(tree.right)}
def __repr__(self):
text = str(self.value)
if self.left:
text += '\n L:' + indent(str(self.left), ' ')
if self.right:
text += '\n R:' + indent(str(self.right), ' ')
return text
class Context(BinaryTree):
def __init__(self, value, left, right, is_left=False):
self.is_left = is_left
super().__init__(value, left, right)
def reattach(self, tree):
if self.is_left:
return BinaryTree(self.value, tree, self.right)
else:
return BinaryTree(self.value, self.left, tree)
class Zipper:
def __init__(self, root=None, context=None):
self.focus = root
self.context = context or []
@staticmethod
def from_tree(dict_tree):
return Zipper(BinaryTree.from_dict(dict_tree))
def value(self):
return self.focus.value
def set_value(self, value):
new_left = self.focus.left or None
new_right = self.focus.right or None
location = Zipper(BinaryTree(value, new_left, new_right), self.context)
location.focus.value = value
return location
def insert(self, obj):
tree = None
if isinstance(obj, Zipper):
tree = obj.tree
elif isinstance(obj, BinaryTree):
tree = obj
else:
tree = BinaryTree(obj, None, None)
return Zipper(tree, self.context)
def left(self):
new_focus, new_context = self.focus.focus_left()
# # Uncomment to pass the original `test_dead_end`:
# if not new_focus:
# return None
return Zipper(new_focus, self.context+[new_context])
def set_left(self, left_tree_dict):
location = Zipper(self.focus, self.context)
location.focus.left = BinaryTree.from_dict(left_tree_dict)
return location
def right(self):
new_focus, new_context = self.focus.focus_right()
# # Uncomment to pass the original `test_dead_end`:
# if not new_focus:
# return None
return Zipper(new_focus, self.context+[new_context])
def set_right(self, right_tree_dict):
location = Zipper(self.focus, self.context)
location.focus.right = BinaryTree.from_dict(right_tree_dict)
return location
def up(self):
last_context = self.context[-1]
previous_focus = last_context.reattach(self.focus)
return Zipper(previous_focus, self.context[:-1])
def root(self):
zipper = Zipper(self.focus, self.context)
while zipper.context:
zipper = zipper.up()
return zipper
@property
def tree(self):
return self.root().focus
def to_tree(self):
return BinaryTree.to_dict(self.tree)
def __repr__(self):
context_str = '('+'), ('.join(map(str, self.context))+')'
return f"focus:\n{self.focus}\ncontext:[\n{context_str}\n]"
if __name__ == "__main__":
z = Zipper().insert(1).right().insert(4).up().left().insert(2).left().insert(3).left()
z_a = Zipper().insert(1).right().insert(4).up().left()
# Zipper insertion
z_b = Zipper().insert(2).left().insert(3).left()
z_prime = z_a.insert(z_b)
print(str(z_prime.tree) == str(z.tree))
# Tree insertion
t_b = BinaryTree(2, BinaryTree(3, None, None), None)
z_prime = z_a.insert(t_b)
print(str(z_prime.tree) == str(z.tree))