vote up 0 vote down star

I want to see what little coding tricks you know. Let me start with one example:

This little code I took from Tanenbaum's Operating Systems Design and Implementation book, it copy n elements from a vector q to a vector p using pointer arithmetics. Since it is in C, it also works for strings:

while (n--) {
    *p++ = *q++;
}

Now post any small algorithm to do something in a more elegant, funny, faster or cleaner way, in any language. Also post an explanation of what it does. Like my example above, the code doesn't need to check for all the possible scenarios (that one doesn't check for overflows), it just needs to be really cool way to do something (Ninja Style).

flag

70% accept rate
been asked before I'm afraid; subject is getting a bit tired... – Mitch Wheat Mar 27 at 3:38
Voting for close as exact duplicate. Not going to bother finding the duplicates - there are countless "cool code", "tricked out", "code gold", etc questions on here. – Adam Davis Mar 27 at 3:40
posting a large image is really going to help.... – Mitch Wheat Mar 27 at 3:44
Bah, what would Tanembaum know about operating systems, anyway? :-) – paxdiablo Mar 27 at 3:47
looks like he put a postman in his last one.... – Mitch Wheat Mar 27 at 3:47
show 1 more comment

closed as exact duplicate by Mitch Wheat, Adam Davis, paxdiablo, bendewey, Ed Swangren Mar 27 at 3:55

2 Answers

vote up 3 vote down

The title of most code ninja-esque snippet I've ever seen easily goes to Duff's Device, a way to perform serial copying:

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);
    }
}
link|flag
I've often wondered why this is better than the simple loop. It's not overly readable which I usually consider more important than speed. It'll still break down to lots of compare and jump operations. In addition, why wouldn't 16 be better than 8? – paxdiablo Mar 27 at 3:46
A single loop has a larger overhead - let's say 50% of the time in loop processing. Go to 8 inside and the loop overhead is 11%. Go to 16 and it's 6% - you've doubled the code for an increase of only 5%. It's simply a point of diminishing returns, and code size is important for caching. – Adam Davis Mar 27 at 3:50
Readability is more important than speed, expect when it's not. One would never do this except when it's absolutely necessary to get the speed up to an acceptable point. So it's rarely needed or used, but when it's needed it's nice to have. – Adam Davis Mar 27 at 3:51
vote up 1 vote down

Strings (null-terminated) are better done with:

while (*p++ = *q++);
link|flag
until there not null-terminated! – Mitch Wheat Mar 27 at 3:42
That's why I spec'd null-terminated in the text. – paxdiablo Mar 27 at 3:43
it was an attempt at humour, but I forgot you're a programmer! ;) – Mitch Wheat Mar 27 at 3:45
We do have humour, Mitch. Besides, your first comment contains at least one syntax error. I think that you wanted to say "unless they're not null-terminated". – Svante Mar 27 at 4:45

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