vote up 4 vote down star
2

I saw Michael Sparks's very interesting dissection of Peter Norvig's Spell Checker at the SO DevDays in London and it got me wondering if anyone has attempted to implement this piece of code in another language, say Perl or maybe C++?

flag

3 Answers

vote up 5 vote down check

I did this presentation at the Boston DevDays, and I'm kind of disappointed how people focus on the number of lines of code. For example, the C# implementation has a low line count also, but I can't see the algorithm at all for all the noise words in the code.

The point I was emphasizing in the presentation was Python's noise-free nature that let me express an algorithm without a lot of throat-clearing and compiler-consoling.

I understand that people will disagree on that point, though, and that there's a bit of "no accounting for taste" involved here.

link|flag
@Ned, that is such a relevant point for me. The comparatively clutter free nature of Python vs. the essential "background noise" that must be present for so many other languages, e.g. braces and other artifacts of "compiler-consoling" as you put it. BTW Nice term! (-: – Rob Wells Oct 31 at 13:30
Oops. Forgot to say in that comment that that was one of the points that Michael made early on in his presentation. The lack of clutter in the code and the way you could easily see what was going on from an algorithmic perspective. I think he said that it was one of the reasons that made him switch from Perl to Python iirc. – Rob Wells Oct 31 at 13:33
The longest line in the Python implementation is 85 characters (incl 4 spaces of indentation), while the longest of the C# implementation is 243 (incl 8 spaces of indendation). Would the C# implementation be accepted as production code? – kaizer.se Oct 31 at 14:53
@kaizer.se - That's why lines of code is such a misleading metric. The byte size of source (optionally gzipped), while still far from perfect, will compensate for major discrepancies in line length. – silentbicycle Oct 31 at 16:27
vote up 6 vote down

There's a list of implementations in other languages at the end of the article, including one in Perl.

link|flag
5  
That's Perl 6, which probably isn't what most people mean by "is it available in Perl?" – Telemachus Oct 31 at 13:19
Ooh, didn't see that, obviously. (-: But as Telemachus mentioned I be interested to see it in "real" Perl, a.k.a. Perl 5 atm. – Rob Wells Oct 31 at 13:27
Them's the fightin' words... :) – DVK Oct 31 at 13:32
vote up 1 vote down

Uh, I did it as an exercise. Had to use hashes instead of them nifty dict objects; yep, it is a little cumbersome, but not that much.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.