-
Notifications
You must be signed in to change notification settings - Fork 2
/
introduction.tex
281 lines (254 loc) · 6.5 KB
/
introduction.tex
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
% \begin{frame}
% \begin{center}
% TODO \cite{abbott2005data}
% \end{center}
% \end{frame}
\begin{frame}
\begin{center}
The term zipper is a colloquial that is used to describe n-hole contexts into a data structure; most often \lstinline{n=1}.
\end{center}
\end{frame}
\begin{frame}
\begin{center}
That is, a data structure that has a hole or pointer focussed on a specific element.
\end{center}
\end{frame}
\begin{frame}
\begin{center}
An important property of a zipper is an ability to efficiently traverse to and modify neighbours.
\end{center}
\end{frame}
\begin{frame}
\begin{block}{Loosely speaking}
\begin{center}
Take any data structure and walk to any element (1-hole) on it.
\end{center}
\end{block}
\begin{center}
Now look around you. What do you see?
\end{center}
\end{frame}
\begin{frame}
\begin{block}{For example}
\begin{center}
Here is the list one to ten
\end{center}
\end{block}
\begin{center}
\lstinline{[1,2,3,4,5,6,7,8,9,10]}
\end{center}
\end{frame}
\begin{frame}
\begin{block}{For example}
\begin{center}
Here is a depiction of a physical list one to ten
\end{center}
\end{block}
\begin{center}
\includegraphics[width=1.25\textheight]{image/list1-10.png}
\end{center}
\end{frame}
\begin{frame}
\begin{block}{For example}
\begin{center}
Let's move to the element containing \lstinline{7}
\end{center}
\end{block}
\begin{center}
\includegraphics[width=1.25\textheight]{image/list1-10-arrow7.png}
\end{center}
\end{frame}
\begin{frame}
\begin{block}{List zipper}
\begin{center}
and look around us
\end{center}
\end{block}
\begin{center}
\includegraphics[width=1.25\textheight]{image/listzipper1-10.png}
\end{center}
\begin{center}
\lstinline{([6,5,4,3,2,1], 7, [8,9,10])}
\end{center}
\end{frame}
\begin{frame}
\begin{block}{List zipper}
\begin{center}
and look around us
\end{center}
\end{block}
\begin{center}
\includegraphics[width=1.25\textheight]{image/listzipper1-10-focus.png}
\end{center}
\begin{center}
\lstinline{([6,5,4,3,2,1], 7, [8,9,10])}
\end{center}
\end{frame}
\begin{frame}[fragile]
\begin{block}{List zipper}
\begin{center}
We can easily move to our neighbours in O(1) time
\end{center}
\end{block}
\begin{center}
\begin{lstlisting}[style=haskell]
listz =
([6,5,4,3,2,1], 7, [8,9,10])
moveLeft listz =
([5,4,3,2,1], 6, [7,8,9,10])
\end{lstlisting}
\end{center}
\end{frame}
\begin{frame}[fragile]
\begin{block}{List zipper}
\begin{center}
The zipper for \lstinline{[a]} is \lstinline{([a], a, [a])}
\end{center}
\end{block}
\begin{center}
\begin{lstlisting}[style=haskell]
data ListZipper a =
ListZipper [a] a [a]
\end{lstlisting}
\end{center}
\end{frame}
\begin{frame}[fragile]
\begin{block}{List zipper}
\begin{center}
Some useful operations on a list zipper:
\begin{itemize}
\item \tiny{\lstinline{moveLeft/Right :: ListZipper a -> Maybe (ListZipper a)}}
\item \tiny{\lstinline{findLeft/Right :: (a -> Bool) -> ListZipper a -> Maybe (ListZipper a)}}
\item \tiny{\lstinline{modify :: (a -> a) -> ListZipper a -> ListZipper a}}
\item \tiny{\lstinline{delete :: ListZipper a -> Maybe (ListZipper a)}}
\end{itemize}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{Multi-way Tree}
\begin{center}
How about a multi-way tree?
\end{center}
\end{block}
\begin{center}
\begin{lstlisting}[style=haskell]
data Tree a =
Tree a [Tree a]
\end{lstlisting}
\end{center}
\end{frame}
\begin{frame}[fragile]
\begin{block}{What if we stand on an element and look around?}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{leftSiblings :: ?}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{leftSiblings :: [Tree a]}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{rightSiblings :: [Tree a]}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{focus :: ?}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{focus :: a}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{children :: ?}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{children :: [Tree a]}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{parents :: ?}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{\lstinline{parents :: [([Tree a], a, [Tree a])]}}
\begin{center}
\includegraphics[width=0.60\textheight]{image/rosetree.png}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{The zipper for a multi-way tree is}
\begin{lstlisting}[style=haskell]
data TreeZipper a =
TreeZipper
[Tree a] -- left siblings
[Tree a] -- right siblings
a -- focus
[Tree a] -- children
[([Tree a], a, [Tree a])] -- parents
\end{lstlisting}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{Tree zipper}
\begin{center}
Some useful operations on a tree zipper:
\begin{itemize}
\item \tiny{\lstinline{moveParent/Child :: TreeZipper a -> Maybe (TreeZipper a)}}
\item \tiny{\lstinline{moveLeft/Right :: TreeZipper a -> Maybe (TreeZipper a)}}
\item \tiny{\lstinline{find :: (a -> Bool) -> TreeZipper a -> Maybe (TreeZipper a)}}
\item \tiny{\lstinline{all :: (a -> Bool) -> TreeZipper a -> Bool}}
\item \tiny{\lstinline{modify :: (a -> a) -> TreeZipper a -> TreeZipper a}}
\item \tiny{\lstinline{modifyTree :: (Tree a -> Tree a) -> TreeZipper a -> TreeZipper a}}
\item \tiny{\lstinline{insertSiblingLeft/Right :: Tree a -> TreeZipper a -> TreeZipper a}}
\end{itemize}
\end{center}
\end{block}
\end{frame}
\begin{frame}[fragile]
\begin{block}{Other zippers}
\begin{center}
Some other data structures have useful zippers:
\begin{itemize}
\item JSON
\item CSV
\item ASN.1
\item text editors
\item Pilot logbook
\item \emph{many more!}
\end{itemize}
\end{center}
\end{block}
\end{frame}