vote up 7 vote down star
8

My favorite is Tom "Duff's Device". It took me literally months after I first found this before I felt like I fully understood it. That said, I have seen others (there is an amazingly short implementation of a regular expression engine by Brian Kernighan in the book Beautiful Code).

dsend(to, from, count)
char *to, *from;
int count;
{
    int n = (count + 7) / 8;
    switch (count % 8) {
    case 0: do { *to = *from++;
    case 7:      *to = *from++;
    case 6:      *to = *from++;
    case 5:      *to = *from++;
    case 4:      *to = *from++;
    case 3:      *to = *from++;
    case 2:      *to = *from++;
    case 1:      *to = *from++;
               } while (--n > 0);
    }
}

What is the cleverest code you've ever seen?

flag

There is no clever code. Only hard to understand code. – Maxim Oct 22 '08 at 16:07
en.wikipedia.org/wiki/Duffs_device – Dustin Getz Oct 22 '08 at 16:09
I don't have a great example to post, but I appreciate the question. Good optimized clever code is work of beauty. – Lance Roberts Oct 22 '08 at 16:10
@Maxim, I partially agree with you. There is clever code, but hard to understand code ain't it – David Arno Oct 22 '08 at 16:10
Seriously - the do and the while are interleaved with the case's? Geez, that's creepy. – Matt Cruikshank Oct 28 '08 at 18:23
show 1 more comment

13 Answers

vote up 6 vote down check

While I don't think that your example is at all clever, it's pretty much just confusing, I would have to say that John Carmack's inverse square root calculation is pretty clever.

link|flag
Umm... that actually wasn't Carmack's idea. – mamama Oct 22 '08 at 17:40
Cleaver would be apt. – __ Oct 22 '08 at 17:41
vote up 18 vote down

Just remember...

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. -Brian Kernighan

link|flag
vote up 16 vote down

I've not seen this, but as urban legends go, it might be true:

The Story of Mel

"There was a program to do that job, an "optimizing assembler", but Mel refused to use it.

"You never know where it's going to put things", he explained"

Lord knows what he'd think of today's 'point and click' approaches to coding :)

link|flag
To a point that's true. I've seen a lot of programmers get caught up on problems because they have no idea what's going on behind the scenes. Layers and layers of abstraction have gotten many people to a point where they have no idea how things work. – Kibbee Oct 22 '08 at 16:59
good to read that again :) – SoloBold Oct 22 '08 at 18:44
It seems Mel was a real person: en.wikipedia.org/wiki/Mel_Kaye wps.com/projects/LGP-21/… (which means the story could be true, or at least based on a true event). – CesarB Oct 29 '08 at 23:17
vote up 10 vote down

Chaining. Very simple, but very effective. I saw it first in a grid control in the 1990s. The property-setting functions returned a pointer to the class instance so the properties could be set in one statement:

gridCell.SetFontSize(12).SetColour(0).SetBold(true);

etc.

Actually, this probably isn't the cleverest thing I've seen, but I like its elegance.

link|flag
Yeah, I'm all about bending the computer to the human's will not the other way around. – __ Oct 22 '08 at 17:38
I'm also a big fan of object initialization, which is like your example above but, IMO, better: new gridCell{ fontsize = 1, someOtherAttribute=0, etc = 3} – __ Oct 22 '08 at 17:39
true, as a = b = c = 0; is good, cout << "hello " << x << " world"; is brilliant. – gbjbaanb Oct 22 '08 at 19:35
vote up 10 vote down

MapReduce.

Whilst it may not be the easiest thing to understand to start with, once you understand it, and how it works, it is incredibly elegant, and powerful.

link|flag
vote up 8 vote down

I do not think your example code is clever at all, as it is ridiculously difficult to work out what it does.

Clever code must meet all of these requirements:

  1. Be easy to understand
  2. Work
  3. Achieve something in an elegant and succinct way

If it isn't easy to understand, then it is isn't clever code.

(Edited to remove the claim that hard to understand code is stupid code as there are occasions when it is necessary to write hard to understand code. Of course, it should then have copious amounts of documentation to explain it...)

link|flag
That's kind of a backwards idea... readability isn't always the highest goal of coding (think embedded systems). Sure a compiler can do a lot of optimizations for you, but that doesn't mean thinking of how to write optimized code is "stupid." – SoloBold Oct 22 '08 at 16:12
No. That is not "clever" code. – Paul Nathan Oct 22 '08 at 16:14
Readability should always be the highest goal of coding. Others will have to maintain your code after you have left and they will need to understand it – David Arno Oct 22 '08 at 16:15
That is patently ridiculous. I mean no offense, but everything isn't pretty app development in an IDE for a system with gigs of RAM and HD space. #1 goal of code is to work, #2 goal is to work fast. Sometimes you need hard to read code to do that. Readability while important is probably around #5. – SoloBold Oct 22 '08 at 16:21
I do not disagree that hard to read code is a necessity on occasions. Just do not call it clever code. – David Arno Oct 22 '08 at 16:23
show 9 more comments
vote up 5 vote down

Wasn't there a small demo flight simulator application circling the newsgroups a couple decades ago where the code was in the shape of an airplane or something? I just looked for it online and can't seem to find it. Maybe my memory is bad.

edit: Josh helped me find it. Thanks, Josh.

http://www1.us.ioccc.org/years.html#1998
(it's the first entry labeled "banks")

1998 - 14th International Obfuscated C Code Contest

Best of Show:
Carl Banks
Penn State Department of Aerospace Engineering
232 Hammond Building
University Park, PA 16802 USA

http://www.personal.psu.edu/users/c/w/cwb129/

What can we say? It's a flight sim done in 1536 bytes of real code. This one is a real marvel. When people say the size limits are too tight, well, we can just point them at this one. This program really pushes the envelope! [...] you will need an X-ish system, and a select() system call.

#include    			     <math.h>
#include    			   <sys/time.h>
#include    			   <X11/Xlib.h>
#include    			  <X11/keysym.h>
    				  double L ,o ,P
    				 ,_=dt,T,Z,D=1,d,
    				 s[999],E,h= 8,I,
    				 J,K,w[999],M,m,O
    				,n[999],j=33e-3,i=
    				1E3,r,t, u,v ,W,S=
    				74.5,l=221,X=7.26,
    				a,B,A=32.2,c, F,H;
    				int N,q, C, y,p,U;
    			       Window z; char f[52]
    			    ; GC k; main(){ Display*e=
 XOpenDisplay( 0); z=RootWindow(e,0); for (XSetForeground(e,k=XCreateGC (e,z,0,0),BlackPixel(e,0))
; scanf("%lf%lf%lf",y +n,w+y, y+s)+1; y ++); XSelectInput(e,z= XCreateSimpleWindow(e,z,0,0,400,400,
0,0,WhitePixel(e,0) ),KeyPressMask); for(XMapWindow(e,z); ; T=sin(O)){ struct timeval G={ 0,dt*1e6}
; K= cos(j); N=1e4; M+= H*_; Z=D*K; F+=_*P; r=E*K; W=cos( O); m=K*W; H=K*T; O+=D*_*F/ K+d/K*E*_; B=
sin(j); a=B*T*D-E*W; XClearWindow(e,z); t=T*E+ D*B*W; j+=d*_*D-_*F*E; P=W*E*B-T*D; for (o+=(I=D*W+E
*T*B,E*d/K *B+v+B/K*F*D)*_; p<y; ){ T=p[s]+i; E=c-p[w]; D=n[p]-L; K=D*m-B*T-H*E; if(p [n]+w[ p]+p[s
]== 0|K <fabs(W=T*r-I*E +D*P) |fabs(D=t *D+Z *T-a *E)> K)N=1e4; else{ q=W/K *4E2+2e2; C= 2E2+4e2/ K
 *D; N-1E4&& XDrawLine(e ,z,k,N ,U,q,C); N=q; U=C; } ++p; } L+=_* (X*t +P*M+m*l); T=X*X+ l*l+M *M;
  XDrawString(e,z,k ,20,380,f,17); D=v/l*15; i+=(B *l-M*r -X*Z)*_; for(; XPending(e); u *=CS!=N){
    			   XEvent z; XNextEvent(e ,&z);
                               ++*((N=XLookupKeysym
    				 (&z.xkey,0))-IT?
    				 N-LT? UP-N?& E:&
    				 J:& u: &h); --*(
    				 DN -N? N-DT ?N==
    				 RT?&u: & W:&h:&J
    				  ); } m=15*F/l;
    				  c+=(I=M/ l,l*H
    				  +I*M+a*X)*_; H
    				  =A*r+v*X-F*l+(
    				  E=.1+X*4.9/l,t
    				  =T*m/32-I*T/24
    				   )/S; K=F*M+(
    				   h* 1e4/l-(T+
    				   E*5*T*E)/3e2
    				   )/S-X*d-B*A;
    				   a=2.63 /l*d;
    				   X+=( d*l-T/S
    				    *(.19*E +a
    				    *.64+J/1e3
    				    )-M* v +A*
    				    Z)*_; l +=
                                    K *_; W=d;
    				    sprintf(f,
    				    "%5d  %3d"
    				    "%7d",p =l
    				   /1.7,(C=9E3+
    		      O*57.3)%0550,(int)i); d+=T*(.45-14/l*
    		     X-a*130-J* .14)*_/125e2+F*_*v; P=(T*(47
    		     *I-m* 52+E*94 *D-t*.38+u*.21*E) /1e2+W*
    		     179*v)/2312; select(p=0,0,0,0,&G); v-=(
    		      W*F-T*(.63*m-I*.086+m*E*19-D*25-.11*u
    		       )/107e2)*_; D=cos(o); E=sin(o); } }
link|flag
Check the Obfuscated C Competition – Josh Oct 22 '08 at 16:26
vote up 4 vote down

Check any of the Golf challenges, or the obfuscated code contests.

Personally, while 'clever' may work, I prefer "clear". (Though I've been known to write some pretty clever code on occasion).

link|flag
vote up 2 vote down

pico is fairly astounding for what it does so compactly.

link|flag
vote up 2 vote down

This is an old entry to the obfuscated code contest. It translates input from English to Tolkien's Elvish.

And the code is formatted in the shape of an Elvish rune. It may not be readable, but it's pretty clever.

link|flag
vote up 2 vote down

There was a game once called Snipes that shipped with Novell that used the IBM symbol characters to draw a maze. See http://en.wikipedia.org/wiki/Snipes

In it there was a long sequence of the following:

LODSB
STOSW
LODSB
STOSW

There were 80 interspersed LODSB/STOSW instructions listed with no other instructions in between.

LODSB means load string byte, and is the same as:

char aRegisterLowByte;
char *sourcePtr;
*sourcePtr++ = aRegisterLowByte;	// move [si] -> al

STOSW means store string word, and is the same as:

short aRegister;
short *destinationPtr;
*destinationPtr++ = aRegister;		// move ax -> [di]

The destination was the screen memory, and the screen memory was layed out with alternate attribute and character display bytes.

The above code was part of a draw string routine. The routine filled the AH register with an attribute byte. Then the number of bytes in the string was used to calculate where to jump to in the interspersed instructions. For example, if 30 characters needed to be displayed, then the jump would be after 50 of the interspersed instructions.

So this routine used loop unrolling to optimize the drawing of strings.

link|flag
vote up 1 vote down

I always thought the "Just another Perl hacker," stuff was pretty clever, although it's kind of the opposite of "beautifully clean" code. There's some kind of beauty in it, in my opinion, a very twisted beauty.

link|flag
import crypt;print ''.join(crypt.crypt('KZ[i.KqX8jDtA6Uwv!V01d?&iQ#bs,aL\\yP<hkAFJ:TE{'[i:i+3],'ks')[2:5].replace('/',' ') for i in range(0,45,3)) – Just Some Guy Oct 22 '08 at 17:02
If by beauty, you mean really ugly, yes. Just kidding. – __ Oct 22 '08 at 17:41
vote up 1 vote down

I've seen a bit of C code that when compiled outputs its source code.

There's also one that outputs code, you can then compile it with itself to produce another program.

I bet someone can find which one it was...

link|flag
Those are called quines if anyones looking for them. – Rich Bradshaw Oct 22 '08 at 20:36

Your Answer

Get an OpenID
or

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