I nominate de Moor & Gibbons "Bridging the algorithm gap: A linear-time functional program for paragraph formatting"
for several reasons:
everyone can understand and relate
to the problem
the paper is the code; it's a literate script; you can save the document as text and run it thru your interpreter or compiler
to optimize, they apply transformations to their initial program. One can be confident that the optimizations don't introduce bugs, provided the transformations are valid.
Their reasoning about the problem points towards actually achieving "software engineering" - that is, they engineer a solution to the problem, rather than crafting a solution.
After some preliminaries, the paper lays out the problem (the line starting with > are code):
In the paragraph problem, the aim is to lay out a given text as a paragraph in a
visually pleasing way. A text is given as a list of words, each of which is a string,
that is, a sequence of characters:
>type Txt = [Word]
>type Word = String
A paragraph is a sequence of lines, each of which is a sequence of words:
>type Paragraph = [Line]
>type Line = [Word]
The problem can be specified as
>par0 :: Txt -> Paragraph
>par0 = minWith cost . filter feasible . formats
or informally, to compute the minimum-cost format among all feasible formats.
(The function filter p takes a list x and returns exactly those elements of x
that satisfy the predicate p.) In the remainder of this section we formalise the
three components formats, feasible and cost of this specication. The result
will be an executable program, but one whose execution takes exponential time.
The function formats takes a text and returns all possible formats as a list of
paragraphs:
>formats :: Txt -> [Paragraph]
>formats = fold1 next_word last_word
> where last_word w = [ [[w]] ]
> next_word w ps = map (new w) ps ++ map (glue w) ps
>new w ls = [w]:ls
>glue w (l:ls) = (w:l):ls
(Here, the binary operator ++ is list concatenation.) That is, for the last word
alone there is just one possible format, and for each remaining word we have the
option either of putting it on a new line at the beginning of an existing paragraph,
or of gluing it onto the front of the rst line of an existing paragraph.
A paragraph format is feasible if every line ts:
>feasible :: Paragraph -> Bool
>feasible = all fits
(The predicate all p holds of a list precisely when all elements of the list satisfy
the predicate p.)
In another dozen lines, they define the cost function and have a working program; they then successively refine it to be efficient.