author | Christian Urban <urbanc@in.tum.de> |
Tue, 28 Nov 2017 20:37:57 +0000 | |
changeset 159 | 92c31cbb1952 |
parent 158 | 94b11ac19b41 |
child 163 | 84917f2e16cd |
permissions | -rw-r--r-- |
6 | 1 |
\documentclass{article} |
62 | 2 |
\usepackage{../style} |
78 | 3 |
\usepackage{../langs} |
153 | 4 |
\usepackage{tikz} |
5 |
\usepackage{pgf} |
|
6 |
\usepackage{pgfplots} |
|
154 | 7 |
\usepackage{stackengine} |
8 |
%%\usepackage{accents} |
|
9 |
\newcommand\barbelow[1]{\stackunder[1.2pt]{#1}{\raisebox{-4mm}{\boldmath$\uparrow$}}} |
|
153 | 10 |
|
11 |
\begin{filecontents}{re-python2.data} |
|
12 |
1 0.033 |
|
13 |
5 0.036 |
|
14 |
10 0.034 |
|
15 |
15 0.036 |
|
16 |
18 0.059 |
|
17 |
19 0.084 |
|
18 |
20 0.141 |
|
19 |
21 0.248 |
|
20 |
22 0.485 |
|
21 |
23 0.878 |
|
22 |
24 1.71 |
|
23 |
25 3.40 |
|
24 |
26 7.08 |
|
25 |
27 14.12 |
|
26 |
28 26.69 |
|
27 |
\end{filecontents} |
|
28 |
||
29 |
\begin{filecontents}{re-java.data} |
|
30 |
5 0.00298 |
|
31 |
10 0.00418 |
|
32 |
15 0.00996 |
|
33 |
16 0.01710 |
|
34 |
17 0.03492 |
|
35 |
18 0.03303 |
|
36 |
19 0.05084 |
|
37 |
20 0.10177 |
|
38 |
21 0.19960 |
|
39 |
22 0.41159 |
|
40 |
23 0.82234 |
|
41 |
24 1.70251 |
|
42 |
25 3.36112 |
|
43 |
26 6.63998 |
|
44 |
27 13.35120 |
|
45 |
28 29.81185 |
|
46 |
\end{filecontents} |
|
47 |
||
6 | 48 |
|
49 |
\begin{document} |
|
50 |
||
154 | 51 |
|
52 |
\section*{Coursework 8 (Regular Expressions and Brainf***)} |
|
6 | 53 |
|
79 | 54 |
This coursework is worth 10\%. It is about regular expressions, |
153 | 55 |
pattern matching and an interpreter. The first part is due on 30 |
152 | 56 |
November at 11pm; the second, more advanced part, is due on 21 |
153 | 57 |
December at 11pm. In the first part, you are asked to implement a |
58 |
regular expression matcher based on derivatives of regular |
|
59 |
expressions. The reason is that regular expression matching in Java |
|
156 | 60 |
and Python can sometimes be extremely slow. The advanced part is about |
61 |
an interpreter for a very simple programming language.\bigskip |
|
62 | 62 |
|
63 |
\noindent |
|
152 | 64 |
\textbf{Important:} |
65 |
||
66 |
\begin{itemize} |
|
67 |
\item Make sure the files you submit can be processed by just calling\\ |
|
68 |
\mbox{\texttt{scala <<filename.scala>>}} on the commandline. Use the |
|
69 |
template files provided and do not make any changes to arguments of |
|
70 |
functions or to any types. You are free to implement any auxiliary |
|
71 |
function you might need. |
|
72 |
||
73 |
\item Do not use any mutable data structures in your |
|
74 |
submissions! They are not needed. This means you cannot create new |
|
75 |
\texttt{Array}s or \texttt{ListBuffer}s, for example. |
|
86 | 76 |
|
152 | 77 |
\item Do not use \texttt{return} in your code! It has a different |
78 |
meaning in Scala, than in Java. |
|
79 |
||
80 |
\item Do not use \texttt{var}! This declares a mutable variable. Only |
|
81 |
use \texttt{val}! |
|
82 |
||
83 |
\item Do not use any parallel collections! No \texttt{.par} therefore! |
|
84 |
Our testing and marking infrastructure is not set up for it. |
|
85 |
\end{itemize} |
|
86 |
||
87 |
\noindent |
|
88 |
Also note that the running time of each part will be restricted to a |
|
89 |
maximum of 360 seconds on my laptop |
|
6 | 90 |
|
91 |
||
110 | 92 |
\subsection*{Disclaimer} |
6 | 93 |
|
94 |
It should be understood that the work you submit represents |
|
68 | 95 |
your own effort! You have not copied from anyone else. An |
6 | 96 |
exception is the Scala code I showed during the lectures or |
97 |
uploaded to KEATS, which you can freely use.\bigskip |
|
98 |
||
99 |
||
68 | 100 |
\subsection*{Part 1 (6 Marks)} |
6 | 101 |
|
69 | 102 |
The task is to implement a regular expression matcher that is based on |
153 | 103 |
derivatives of regular expressions. Most of the functions are defined by |
104 |
recursion over regular expressions and can be elegantly implemented |
|
105 |
using Scala's pattern-matching. The implementation should deal with the |
|
106 |
following regular expressions, which have been predefined in the file |
|
107 |
\texttt{re.scala}: |
|
6 | 108 |
|
109 |
\begin{center} |
|
110 |
\begin{tabular}{lcll} |
|
111 |
$r$ & $::=$ & $\ZERO$ & cannot match anything\\ |
|
112 |
& $|$ & $\ONE$ & can only match the empty string\\ |
|
158 | 113 |
& $|$ & $c$ & can match a single character (in this case $c$)\\ |
68 | 114 |
& $|$ & $r_1 + r_2$ & can match a string either with $r_1$ or with $r_2$\\ |
115 |
& $|$ & $r_1\cdot r_2$ & can match the first part of a string with $r_1$ and\\ |
|
116 |
& & & then the second part with $r_2$\\ |
|
6 | 117 |
& $|$ & $r^*$ & can match zero or more times $r$\\ |
118 |
\end{tabular} |
|
119 |
\end{center} |
|
120 |
||
68 | 121 |
\noindent |
152 | 122 |
Why? Knowing how to match regular expressions and strings will let you |
123 |
solve a lot of problems that vex other humans. Regular expressions are |
|
124 |
one of the fastest and simplest ways to match patterns in text, and |
|
125 |
are endlessly useful for searching, editing and analysing data in all |
|
126 |
sorts of places (for example analysing network traffic in order to |
|
127 |
detect security breaches). However, you need to be fast, otherwise you |
|
128 |
will stumble over problems such as recently reported at |
|
68 | 129 |
|
130 |
{\small |
|
131 |
\begin{itemize} |
|
132 |
\item[$\bullet$] \url{http://stackstatus.net/post/147710624694/outage-postmortem-july-20-2016} |
|
133 |
\item[$\bullet$] \url{https://vimeo.com/112065252} |
|
134 |
\item[$\bullet$] \url{http://davidvgalbraith.com/how-i-fixed-atom/} |
|
135 |
\end{itemize}} |
|
136 |
||
79 | 137 |
\subsubsection*{Tasks (file re.scala)} |
68 | 138 |
|
158 | 139 |
The file \texttt{re.scala} has already a definition for regular |
140 |
expressions and also defines some handy shorthand notation for |
|
141 |
regular expressions. The notation in this document matches up |
|
142 |
with the code in the file as follows: |
|
143 |
||
144 |
\begin{center} |
|
145 |
\begin{tabular}{rcl@{\hspace{10mm}}l} |
|
146 |
& & code: & shorthand:\smallskip \\ |
|
147 |
$\ZERO$ & $\mapsto$ & \texttt{ZERO}\\ |
|
148 |
$\ONE$ & $\mapsto$ & \texttt{ONE}\\ |
|
149 |
$c$ & $\mapsto$ & \texttt{CHAR(c)}\\ |
|
150 |
$r_1 + r_2$ & $\mapsto$ & \texttt{ALT(r1, r2)} & \texttt{r1 | r2}\\ |
|
151 |
$r_1 \cdot r_2$ & $\mapsto$ & \texttt{SEQ(r1, r2)} & \texttt{r1 $\sim$ r2}\\ |
|
152 |
$r^*$ & $\mapsto$ & \texttt{STAR(r)} & \texttt{r.\%} |
|
153 |
\end{tabular} |
|
154 |
\end{center} |
|
155 |
||
156 |
||
68 | 157 |
\begin{itemize} |
152 | 158 |
\item[(1a)] Implement a function, called \textit{nullable}, by |
159 |
recursion over regular expressions. This function tests whether a |
|
153 | 160 |
regular expression can match the empty string. This means given a |
158 | 161 |
regular expression it either returns true or false. The function |
162 |
\textit{nullable} |
|
163 |
is defined as follows: |
|
6 | 164 |
|
165 |
\begin{center} |
|
166 |
\begin{tabular}{lcl} |
|
167 |
$\textit{nullable}(\ZERO)$ & $\dn$ & $\textit{false}$\\ |
|
168 |
$\textit{nullable}(\ONE)$ & $\dn$ & $\textit{true}$\\ |
|
169 |
$\textit{nullable}(c)$ & $\dn$ & $\textit{false}$\\ |
|
170 |
$\textit{nullable}(r_1 + r_2)$ & $\dn$ & $\textit{nullable}(r_1) \vee \textit{nullable}(r_2)$\\ |
|
171 |
$\textit{nullable}(r_1 \cdot r_2)$ & $\dn$ & $\textit{nullable}(r_1) \wedge \textit{nullable}(r_2)$\\ |
|
172 |
$\textit{nullable}(r^*)$ & $\dn$ & $\textit{true}$\\ |
|
173 |
\end{tabular} |
|
158 | 174 |
\end{center}~\hfill[1 Mark] |
68 | 175 |
|
176 |
\item[(1b)] Implement a function, called \textit{der}, by recursion over |
|
177 |
regular expressions. It takes a character and a regular expression |
|
69 | 178 |
as arguments and calculates the derivative regular expression according |
179 |
to the rules: |
|
6 | 180 |
|
181 |
\begin{center} |
|
182 |
\begin{tabular}{lcl} |
|
183 |
$\textit{der}\;c\;(\ZERO)$ & $\dn$ & $\ZERO$\\ |
|
184 |
$\textit{der}\;c\;(\ONE)$ & $\dn$ & $\ZERO$\\ |
|
185 |
$\textit{der}\;c\;(d)$ & $\dn$ & $\textit{if}\; c = d\;\textit{then} \;\ONE \; \textit{else} \;\ZERO$\\ |
|
186 |
$\textit{der}\;c\;(r_1 + r_2)$ & $\dn$ & $(\textit{der}\;c\;r_1) + (\textit{der}\;c\;r_2)$\\ |
|
187 |
$\textit{der}\;c\;(r_1 \cdot r_2)$ & $\dn$ & $\textit{if}\;\textit{nullable}(r_1)$\\ |
|
188 |
& & $\textit{then}\;((\textit{der}\;c\;r_1)\cdot r_2) + (\textit{der}\;c\;r_2)$\\ |
|
189 |
& & $\textit{else}\;(\textit{der}\;c\;r_1)\cdot r_2$\\ |
|
190 |
$\textit{der}\;c\;(r^*)$ & $\dn$ & $(\textit{der}\;c\;r)\cdot (r^*)$\\ |
|
191 |
\end{tabular} |
|
69 | 192 |
\end{center} |
193 |
||
194 |
For example given the regular expression $r = (a \cdot b) \cdot c$, the derivatives |
|
195 |
w.r.t.~the characters $a$, $b$ and $c$ are |
|
196 |
||
197 |
\begin{center} |
|
198 |
\begin{tabular}{lcll} |
|
199 |
$\textit{der}\;a\;r$ & $=$ & $(\ONE \cdot b)\cdot c$ & ($= r'$)\\ |
|
200 |
$\textit{der}\;b\;r$ & $=$ & $(\ZERO \cdot b)\cdot c$\\ |
|
201 |
$\textit{der}\;c\;r$ & $=$ & $(\ZERO \cdot b)\cdot c$ |
|
202 |
\end{tabular} |
|
203 |
\end{center} |
|
204 |
||
205 |
Let $r'$ stand for the first derivative, then taking the derivatives of $r'$ |
|
206 |
w.r.t.~the characters $a$, $b$ and $c$ gives |
|
207 |
||
208 |
\begin{center} |
|
209 |
\begin{tabular}{lcll} |
|
210 |
$\textit{der}\;a\;r'$ & $=$ & $((\ZERO \cdot b) + \ZERO)\cdot c$ \\ |
|
211 |
$\textit{der}\;b\;r'$ & $=$ & $((\ZERO \cdot b) + \ONE)\cdot c$ & ($= r''$)\\ |
|
212 |
$\textit{der}\;c\;r'$ & $=$ & $((\ZERO \cdot b) + \ZERO)\cdot c$ |
|
213 |
\end{tabular} |
|
214 |
\end{center} |
|
215 |
||
216 |
One more example: Let $r''$ stand for the second derivative above, |
|
217 |
then taking the derivatives of $r''$ w.r.t.~the characters $a$, $b$ |
|
218 |
and $c$ gives |
|
219 |
||
220 |
\begin{center} |
|
221 |
\begin{tabular}{lcll} |
|
222 |
$\textit{der}\;a\;r''$ & $=$ & $((\ZERO \cdot b) + \ZERO) \cdot c + \ZERO$ \\ |
|
223 |
$\textit{der}\;b\;r''$ & $=$ & $((\ZERO \cdot b) + \ZERO) \cdot c + \ZERO$\\ |
|
152 | 224 |
$\textit{der}\;c\;r''$ & $=$ & $((\ZERO \cdot b) + \ZERO) \cdot c + \ONE$ & |
225 |
(is $\textit{nullable}$) |
|
69 | 226 |
\end{tabular} |
227 |
\end{center} |
|
228 |
||
229 |
Note, the last derivative can match the empty string, that is it is \textit{nullable}.\\ |
|
230 |
\mbox{}\hfill\mbox{[1 Mark]} |
|
6 | 231 |
|
68 | 232 |
\item[(1c)] Implement the function \textit{simp}, which recursively |
69 | 233 |
traverses a regular expression from the inside to the outside, and |
153 | 234 |
on the way simplifies every regular expression on the left (see |
235 |
below) to the regular expression on the right, except it does not |
|
236 |
simplify inside ${}^*$-regular expressions. |
|
6 | 237 |
|
68 | 238 |
\begin{center} |
69 | 239 |
\begin{tabular}{l@{\hspace{4mm}}c@{\hspace{4mm}}ll} |
6 | 240 |
$r \cdot \ZERO$ & $\mapsto$ & $\ZERO$\\ |
241 |
$\ZERO \cdot r$ & $\mapsto$ & $\ZERO$\\ |
|
242 |
$r \cdot \ONE$ & $\mapsto$ & $r$\\ |
|
243 |
$\ONE \cdot r$ & $\mapsto$ & $r$\\ |
|
244 |
$r + \ZERO$ & $\mapsto$ & $r$\\ |
|
245 |
$\ZERO + r$ & $\mapsto$ & $r$\\ |
|
246 |
$r + r$ & $\mapsto$ & $r$\\ |
|
247 |
\end{tabular} |
|
68 | 248 |
\end{center} |
249 |
||
69 | 250 |
For example the regular expression |
68 | 251 |
\[(r_1 + \ZERO) \cdot \ONE + ((\ONE + r_2) + r_3) \cdot (r_4 \cdot \ZERO)\] |
252 |
||
153 | 253 |
simplifies to just $r_1$. \textbf{Hint:} Regular expressions can be |
79 | 254 |
seen as trees and there are several methods for traversing |
153 | 255 |
trees. One of them corresponds to the inside-out traversal, which is |
256 |
sometimes also called post-order traversal. Furthermore, |
|
257 |
remember numerical expressions from school times: there you had expressions |
|
152 | 258 |
like $u + \ldots + (1 \cdot x) - \ldots (z + (y \cdot 0)) \ldots$ |
79 | 259 |
and simplification rules that looked very similar to rules |
260 |
above. You would simplify such numerical expressions by replacing |
|
261 |
for example the $y \cdot 0$ by $0$, or $1\cdot x$ by $x$, and then |
|
152 | 262 |
look whether more rules are applicable. If you organise the |
79 | 263 |
simplification in an inside-out fashion, it is always clear which |
153 | 264 |
rule should be applied next.\hfill[2 Marks] |
68 | 265 |
|
266 |
\item[(1d)] Implement two functions: The first, called \textit{ders}, |
|
69 | 267 |
takes a list of characters and a regular expression as arguments, and |
268 |
builds the derivative w.r.t.~the list as follows: |
|
68 | 269 |
|
270 |
\begin{center} |
|
271 |
\begin{tabular}{lcl} |
|
69 | 272 |
$\textit{ders}\;(Nil)\;r$ & $\dn$ & $r$\\ |
273 |
$\textit{ders}\;(c::cs)\;r$ & $\dn$ & |
|
68 | 274 |
$\textit{ders}\;cs\;(\textit{simp}(\textit{der}\;c\;r))$\\ |
275 |
\end{tabular} |
|
6 | 276 |
\end{center} |
277 |
||
78 | 278 |
Note that this function is different from \textit{der}, which only |
279 |
takes a single character. |
|
280 |
||
281 |
The second function, called \textit{matcher}, takes a string and a |
|
282 |
regular expression as arguments. It builds first the derivatives |
|
283 |
according to \textit{ders} and after that tests whether the resulting |
|
284 |
derivative regular expression can match the empty string (using |
|
285 |
\textit{nullable}). For example the \textit{matcher} will produce |
|
153 | 286 |
true for the regular expression $(a\cdot b)\cdot c$ and the string |
287 |
$abc$, but false if you give it the string $ab$. \hfill[1 Mark] |
|
78 | 288 |
|
153 | 289 |
\item[(1e)] Implement a function, called \textit{size}, by recursion |
78 | 290 |
over regular expressions. If a regular expression is seen as a tree, |
291 |
then \textit{size} should return the number of nodes in such a |
|
292 |
tree. Therefore this function is defined as follows: |
|
293 |
||
294 |
\begin{center} |
|
295 |
\begin{tabular}{lcl} |
|
296 |
$\textit{size}(\ZERO)$ & $\dn$ & $1$\\ |
|
297 |
$\textit{size}(\ONE)$ & $\dn$ & $1$\\ |
|
298 |
$\textit{size}(c)$ & $\dn$ & $1$\\ |
|
299 |
$\textit{size}(r_1 + r_2)$ & $\dn$ & $1 + \textit{size}(r_1) + \textit{size}(r_2)$\\ |
|
300 |
$\textit{size}(r_1 \cdot r_2)$ & $\dn$ & $1 + \textit{size}(r_1) + \textit{size}(r_2)$\\ |
|
301 |
$\textit{size}(r^*)$ & $\dn$ & $1 + \textit{size}(r)$\\ |
|
302 |
\end{tabular} |
|
303 |
\end{center} |
|
304 |
||
153 | 305 |
You can use \textit{size} in order to test how much the `evil' regular |
306 |
expression $(a^*)^* \cdot b$ grows when taking successive derivatives |
|
307 |
according the letter $a$ without simplification and then compare it to |
|
308 |
taking the derivative, but simplify the result. The sizes |
|
309 |
are given in \texttt{re.scala}. \hfill[1 Mark] |
|
310 |
\end{itemize} |
|
78 | 311 |
|
94
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
312 |
\subsection*{Background} |
78 | 313 |
|
94
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
314 |
Although easily implementable in Scala, the idea behind the derivative |
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
315 |
function might not so easy to be seen. To understand its purpose |
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
316 |
better, assume a regular expression $r$ can match strings of the form |
152 | 317 |
$c\!::\!cs$ (that means strings which start with a character $c$ and have |
153 | 318 |
some rest, or tail, $cs$). If you take the derivative of $r$ with |
319 |
respect to the character $c$, then you obtain a regular expression |
|
94
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
320 |
that can match all the strings $cs$. In other words, the regular |
153 | 321 |
expression $\textit{der}\;c\;r$ can match the same strings $c\!::\!cs$ |
94
ae4708c851ee
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
86
diff
changeset
|
322 |
that can be matched by $r$, except that the $c$ is chopped off. |
75 | 323 |
|
324 |
Assume now $r$ can match the string $abc$. If you take the derivative |
|
325 |
according to $a$ then you obtain a regular expression that can match |
|
326 |
$bc$ (it is $abc$ where the $a$ has been chopped off). If you now |
|
153 | 327 |
build the derivative $\textit{der}\;b\;(\textit{der}\;a\;r)$ you |
78 | 328 |
obtain a regular expression that can match the string $c$ (it is $bc$ |
329 |
where $b$ is chopped off). If you finally build the derivative of this |
|
330 |
according $c$, that is |
|
153 | 331 |
$\textit{der}\;c\;(\textit{der}\;b\;(\textit{der}\;a\;r))$, you obtain |
332 |
a regular expression that can match the empty string. You can test |
|
333 |
whether this is indeed the case using the function nullable, which is |
|
334 |
what your matcher is doing. |
|
75 | 335 |
|
153 | 336 |
The purpose of the $\textit{simp}$ function is to keep the regular |
158 | 337 |
expressions small. Normally the derivative function makes the regular |
153 | 338 |
expression bigger (see the SEQ case and the example in (1b)) and the |
339 |
algorithm would be slower and slower over time. The $\textit{simp}$ |
|
340 |
function counters this increase in size and the result is that the |
|
341 |
algorithm is fast throughout. By the way, this algorithm is by Janusz |
|
342 |
Brzozowski who came up with the idea of derivatives in 1964 in his PhD |
|
343 |
thesis. |
|
75 | 344 |
|
78 | 345 |
\begin{center}\small |
346 |
\url{https://en.wikipedia.org/wiki/Janusz_Brzozowski_(computer_scientist)} |
|
347 |
\end{center} |
|
6 | 348 |
|
153 | 349 |
|
350 |
If you want to see how badly the regular expression matchers do in |
|
158 | 351 |
Java\footnote{Version 8 and below; Version 9 does not seem to be as |
352 |
catastrophic, but still worse than the regular expression matcher |
|
353 |
based on derivatives.} and in Python with the `evil' regular |
|
156 | 354 |
expression $(a^*)^*\cdot b$, then have a look at the graphs below (you |
355 |
can try it out for yourself: have a look at the file |
|
356 |
\texttt{catastrophic.java} and \texttt{catastrophic.py} on |
|
357 |
KEATS). Compare this with the matcher you have implemented. How long |
|
358 |
can the string of $a$'s be in your matcher and still stay within the |
|
359 |
30 seconds time limit? |
|
153 | 360 |
|
361 |
\begin{center} |
|
362 |
\begin{tikzpicture} |
|
363 |
\begin{axis}[ |
|
364 |
title={Graph: $(a^*)^*\cdot b$ and strings |
|
365 |
$\underbrace{a\ldots a}_{n}$}, |
|
366 |
xlabel={$n$}, |
|
367 |
x label style={at={(1.05,0.0)}}, |
|
368 |
ylabel={time in secs}, |
|
369 |
enlargelimits=false, |
|
370 |
xtick={0,5,...,30}, |
|
371 |
xmax=33, |
|
372 |
ymax=35, |
|
373 |
ytick={0,5,...,30}, |
|
374 |
scaled ticks=false, |
|
375 |
axis lines=left, |
|
376 |
width=6cm, |
|
158 | 377 |
height=5.5cm, |
156 | 378 |
legend entries={Python, Java 8}, |
153 | 379 |
legend pos=outer north east] |
380 |
\addplot[blue,mark=*, mark options={fill=white}] table {re-python2.data}; |
|
381 |
\addplot[cyan,mark=*, mark options={fill=white}] table {re-java.data}; |
|
382 |
\end{axis} |
|
383 |
\end{tikzpicture} |
|
384 |
\end{center} |
|
385 |
\newpage |
|
386 |
||
387 |
\subsection*{Part 2 (4 Marks)} |
|
388 |
||
154 | 389 |
Coming from Java or C++, you might think Scala is a quite esoteric |
390 |
programming language. But remember, some serious companies have built |
|
391 |
their business on |
|
392 |
Scala.\footnote{\url{https://en.wikipedia.org/wiki/Scala_(programming_language)\#Companies}} |
|
156 | 393 |
And there are far, far more esoteric languages out there. One is |
394 |
called \emph{brainf***}. You are asked in this part to implement an |
|
154 | 395 |
interpreter for this language. |
396 |
||
397 |
Urban M\"uller developed brainf*** in 1993. A close relative of this |
|
398 |
language was already introduced in 1964 by Corado B\"ohm, an Italian |
|
399 |
computer pioneer, who unfortunately died a few months ago. The main |
|
400 |
feature of brainf*** is its minimalistic set of instructions---just 8 |
|
401 |
instructions in total and all of which are single characters. Despite |
|
402 |
the minimalism, this language has been shown to be Turing |
|
403 |
complete\ldots{}if this doesn't ring any bell with you: it roughly |
|
158 | 404 |
means that every algorithm we know can, in principle, be implemented in |
154 | 405 |
brainf***. It just takes a lot of determination and quite a lot of |
156 | 406 |
memory resources. Some relatively sophisticated sample programs in |
154 | 407 |
brainf*** are given in the file \texttt{bf.scala}.\bigskip |
153 | 408 |
|
154 | 409 |
\noindent |
410 |
As mentioned above, brainf*** has 8 single-character commands, namely |
|
411 |
\texttt{'>'}, \texttt{'<'}, \texttt{'+'}, \texttt{'-'}, \texttt{'.'}, |
|
412 |
\texttt{','}, \texttt{'['} and \texttt{']'}. Every other character is |
|
413 |
considered a comment. Brainf*** operates on memory cells containing |
|
414 |
integers. For this it uses a single memory pointer that points at each |
|
415 |
stage to one memory cell. This pointer can be moved forward by one |
|
416 |
memory cell by using the command \texttt{'>'}, and backward by using |
|
417 |
\texttt{'<'}. The commands \texttt{'+'} and \texttt{'-'} increase, |
|
418 |
respectively decrease, by 1 the content of the memory cell to which |
|
419 |
the memory pointer currently points to. The commands for input/output |
|
420 |
are \texttt{','} and \texttt{'.'}. Output works by reading the content |
|
421 |
of the memory cell to which the memory pointer points to and printing |
|
422 |
it out as an ASCII character. Input works the other way, taking some |
|
423 |
user input and storing it in the cell to which the memory pointer |
|
424 |
points to. The commands \texttt{'['} and \texttt{']'} are looping |
|
425 |
constructs. Everything in between \texttt{'['} and \texttt{']'} is |
|
426 |
repeated until a counter (memory cell) reaches zero. A typical |
|
427 |
program in brainf*** looks as follows: |
|
153 | 428 |
|
154 | 429 |
\begin{center} |
430 |
\begin{verbatim} |
|
431 |
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++ |
|
432 |
..+++.>>.<-.<.+++.------.--------.>>+.>++. |
|
433 |
\end{verbatim} |
|
434 |
\end{center} |
|
435 |
||
436 |
\noindent |
|
437 |
This one prints out Hello World\ldots{}obviously. |
|
153 | 438 |
|
439 |
\subsubsection*{Tasks (file bf.scala)} |
|
440 |
||
441 |
\begin{itemize} |
|
154 | 442 |
\item[(2a)] Brainf*** memory is represented by a \texttt{Map} from |
443 |
integers to integers. The empty memory is represented by |
|
444 |
\texttt{Map()}, that is nothing is stored in the |
|
158 | 445 |
memory. \texttt{Map(0 -> 1, 2 -> 3)} clearly stores \texttt{1} at |
446 |
memory location \texttt{0}; at \texttt{2} it stores \texttt{3}. The |
|
447 |
convention is that if we query the memory at a location that is |
|
448 |
\emph{not} defined in the \texttt{Map}, we return \texttt{0}. Write |
|
449 |
a function, \texttt{sread}, that takes a memory (a \texttt{Map}) and |
|
450 |
a memory pointer (an \texttt{Int}) as argument, and safely reads the |
|
451 |
corresponding memory location. If the \texttt{Map} is not defined at |
|
452 |
the memory pointer, \texttt{sread} returns \texttt{0}. |
|
154 | 453 |
|
454 |
Write another function \texttt{write}, which takes a memory, a |
|
158 | 455 |
memory pointer and an integer value as argument and updates the |
456 |
\texttt{Map} with the value at the given memory location. As usual |
|
457 |
the \texttt{Map} is not updated `in-place' but a new map is created |
|
458 |
with the same data, except the value is stored at the given memory |
|
459 |
pointer.\hfill[1 Mark] |
|
154 | 460 |
|
461 |
\item[(2b)] Write two functions, \texttt{jumpRight} and |
|
462 |
\texttt{jumpLeft} that are needed to implement the loop constructs |
|
463 |
of brainf***. They take a program (a \texttt{String}) and a program |
|
464 |
counter (an \texttt{Int}) as argument and move right (respectively |
|
465 |
left) in the string in order to find the \textbf{matching} |
|
466 |
opening/closing bracket. For example, given the following program |
|
467 |
with the program counter indicated by an arrow: |
|
468 |
||
469 |
\begin{center} |
|
470 |
\texttt{--[\barbelow{.}.+>--],>,++} |
|
471 |
\end{center} |
|
472 |
||
473 |
then the matching closing bracket is in 9th position (counting from 0) and |
|
474 |
\texttt{jumpRight} is supposed to return the position just after this |
|
475 |
||
476 |
\begin{center} |
|
477 |
\texttt{--[..+>--]\barbelow{,}>,++} |
|
478 |
\end{center} |
|
479 |
||
158 | 480 |
meaning it jumps to after the loop. Similarly, if you are in 8th position |
154 | 481 |
then \texttt{jumpLeft} is supposed to jump to just after the opening |
482 |
bracket (that is jumping to the beginning of the loop): |
|
483 |
||
484 |
\begin{center} |
|
485 |
\texttt{--[..+>-\barbelow{-}],>,++} |
|
486 |
\qquad$\stackrel{\texttt{jumpLeft}}{\longrightarrow}$\qquad |
|
487 |
\texttt{--[\barbelow{.}.+>--],>,++} |
|
488 |
\end{center} |
|
489 |
||
490 |
Unfortunately we have to take into account that there might be |
|
157 | 491 |
other opening and closing brackets on the `way' to find the |
154 | 492 |
matching bracket. For example in the brainf*** program |
493 |
||
494 |
\begin{center} |
|
495 |
\texttt{--[\barbelow{.}.[+>]--],>,++} |
|
496 |
\end{center} |
|
497 |
||
498 |
we do not want to return the index for the \texttt{'-'} in the 9th |
|
499 |
position, but the program counter for \texttt{','} in 12th |
|
157 | 500 |
position. The easiest to find out whether a bracket is matched is by |
501 |
using levels (which are the third argument in \texttt{jumpLeft} and |
|
154 | 502 |
\texttt{jumpLeft}). In case of \texttt{jumpRight} you increase the |
503 |
level by one whenever you find an opening bracket and decrease by |
|
504 |
one for a closing bracket. Then in \texttt{jumpRight} you are looking |
|
505 |
for the closing bracket on level \texttt{0}. For \texttt{jumpLeft} you |
|
506 |
do the opposite. In this way you can find \textbf{matching} brackets |
|
507 |
in strings such as |
|
508 |
||
509 |
\begin{center} |
|
510 |
\texttt{--[\barbelow{.}.[[-]+>[.]]--],>,++} |
|
511 |
\end{center} |
|
512 |
||
513 |
for which \texttt{jumpRight} should produce the position: |
|
514 |
||
515 |
\begin{center} |
|
516 |
\texttt{--[..[[-]+>[.]]--]\barbelow{,}>,++} |
|
517 |
\end{center} |
|
518 |
||
519 |
It is also possible that the position returned by \texttt{jumpRight} or |
|
520 |
\texttt{jumpLeft} is outside the string in cases where there are |
|
521 |
no matching brackets. For example |
|
153 | 522 |
|
154 | 523 |
\begin{center} |
524 |
\texttt{--[\barbelow{.}.[[-]+>[.]]--,>,++} |
|
525 |
\qquad$\stackrel{\texttt{jumpRight}}{\longrightarrow}$\qquad |
|
526 |
\texttt{--[..[[-]+>[.]]-->,++\barbelow{\;\phantom{+}}} |
|
527 |
\end{center} |
|
528 |
\hfill[1 Mark] |
|
529 |
||
530 |
||
531 |
\item[(2c)] Write a recursive function \texttt{run} that executes a |
|
532 |
brainf*** program. It takes a program, a program counter, a memory |
|
157 | 533 |
pointer and a memory as arguments. If the program counter is outside |
154 | 534 |
the program string, the execution stops and \texttt{run} returns the |
535 |
memory. If the program counter is inside the string, it reads the |
|
157 | 536 |
corresponding character and updates the program counter \texttt{pc}, |
537 |
memory pointer \texttt{mp} and memory \texttt{mem} according to the |
|
538 |
rules shown in Figure~\ref{comms}. It then calls recursively |
|
539 |
\texttt{run} with the updated data. |
|
153 | 540 |
|
154 | 541 |
Write another function \texttt{start} that calls \texttt{run} with a |
157 | 542 |
given brainfu** program and memory, and the program counter and memory pointer |
154 | 543 |
set to~$0$. Like \texttt{run} it returns the memory after the execution |
544 |
of the program finishes. You can test your brainf**k interpreter with the |
|
155 | 545 |
Sierpinski triangle or the Hello world programs or have a look at |
546 |
||
547 |
\begin{center} |
|
548 |
\url{https://esolangs.org/wiki/Brainfuck} |
|
549 |
\end{center}\hfill[2 Marks] |
|
154 | 550 |
|
551 |
\begin{figure}[p] |
|
552 |
\begin{center} |
|
553 |
\begin{tabular}{|@{}p{0.8cm}|l|} |
|
554 |
\hline |
|
555 |
\hfill\texttt{'>'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
556 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
557 |
$\bullet$ & $\texttt{mp} + 1$\\ |
|
558 |
$\bullet$ & \texttt{mem} unchanged |
|
559 |
\end{tabular}\\\hline |
|
560 |
\hfill\texttt{'<'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
561 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
562 |
$\bullet$ & $\texttt{mp} - 1$\\ |
|
563 |
$\bullet$ & \texttt{mem} unchanged |
|
564 |
\end{tabular}\\\hline |
|
565 |
\hfill\texttt{'+'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
566 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
567 |
$\bullet$ & $\texttt{mp}$ unchanged\\ |
|
568 |
$\bullet$ & \texttt{mem} updated with \texttt{mp -> mem(mp) + 1}\\ |
|
569 |
\end{tabular}\\\hline |
|
570 |
\hfill\texttt{'-'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
571 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
572 |
$\bullet$ & $\texttt{mp}$ unchanged\\ |
|
573 |
$\bullet$ & \texttt{mem} updated with \texttt{mp -> mem(mp) - 1}\\ |
|
574 |
\end{tabular}\\\hline |
|
575 |
\hfill\texttt{'.'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
576 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
577 |
$\bullet$ & $\texttt{mp}$ and \texttt{mem} unchanged\\ |
|
158 | 578 |
$\bullet$ & print out \,\texttt{mem(mp)} as a character\\ |
154 | 579 |
\end{tabular}\\\hline |
580 |
\hfill\texttt{','} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
581 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
582 |
$\bullet$ & $\texttt{mp}$ unchanged\\ |
|
583 |
$\bullet$ & \texttt{mem} updated with \texttt{mp -> \textrm{input}}\\ |
|
158 | 584 |
\multicolumn{2}{@{}l}{the input is given by \texttt{Console.in.read().toByte}} |
154 | 585 |
\end{tabular}\\\hline |
586 |
\hfill\texttt{'['} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
587 |
\multicolumn{2}{@{}l}{if \texttt{mem(mp) == 0} then}\\ |
|
588 |
$\bullet$ & $\texttt{pc = jumpRight(prog, pc + 1, 0)}$\\ |
|
589 |
$\bullet$ & $\texttt{mp}$ and \texttt{mem} unchanged\medskip\\ |
|
590 |
\multicolumn{2}{@{}l}{otherwise if \texttt{mem(mp) != 0} then}\\ |
|
591 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
592 |
$\bullet$ & $\texttt{mp}$ and \texttt{mem} unchanged\\ |
|
593 |
\end{tabular} |
|
594 |
\\\hline |
|
595 |
\hfill\texttt{']'} & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
596 |
\multicolumn{2}{@{}l}{if \texttt{mem(mp) != 0} then}\\ |
|
159 | 597 |
$\bullet$ & $\texttt{pc = jumpLeft(prog, pc - 1, 0)}$\\ |
154 | 598 |
$\bullet$ & $\texttt{mp}$ and \texttt{mem} unchanged\medskip\\ |
599 |
\multicolumn{2}{@{}l}{otherwise if \texttt{mem(mp) == 0} then}\\ |
|
600 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
601 |
$\bullet$ & $\texttt{mp}$ and \texttt{mem} unchanged\\ |
|
602 |
\end{tabular}\\\hline |
|
603 |
any other char & \begin{tabular}[t]{@{}l@{\hspace{2mm}}l@{}} |
|
604 |
$\bullet$ & $\texttt{pc} + 1$\\ |
|
605 |
$\bullet$ & \texttt{mp} and \texttt{mem} unchanged |
|
606 |
\end{tabular}\\ |
|
607 |
\hline |
|
608 |
\end{tabular} |
|
609 |
\end{center} |
|
157 | 610 |
\caption{The rules for how commands in the brainf*** language update the program counter \texttt{pc}, |
611 |
memory pointer \texttt{mp} and memory \texttt{mem}.\label{comms}} |
|
154 | 612 |
\end{figure} |
153 | 613 |
\end{itemize}\bigskip |
614 |
||
615 |
||
616 |
||
617 |
||
6 | 618 |
\end{document} |
619 |
||
68 | 620 |
|
6 | 621 |
%%% Local Variables: |
622 |
%%% mode: latex |
|
623 |
%%% TeX-master: t |
|
624 |
%%% End: |