There was a post talking about a sorting algorithm that the author called it 'sleepsort'
I couldn't believe I didn't thought of it before. In fact in a past post talking about Parallel::Iterator, I played with timers too.... I was sooo close :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function f() { | |
sleep "$1" | |
echo "$1" | |
} | |
while [ -n "$1" ] | |
do | |
f "$1" & | |
shift | |
done | |
wait |
Lots of lols reading the full thread, with comments, optimizations, translations to other languages and puns there.
For example:
- complexity of the algo: O(highest_value_in_input)
- 40: Someone email this to Knuth.
- 41: >>40. Knuth doesn't do email anymore
Have fun.
1 comentario:
- complexity of the algo: O(highest_value_in_input)
Yeah, sure... That's simply not correct. Or, more precisely, it is cheating... :) You have to bring the scheduler on stage...
OTH nice and funny idea (I found out yesterday at the Mongers meeting)...
Publicar un comentario