You get 10 numbers on STDIN, each followed by newline character, after that you have to display those numbers sorted from the smaller to the bigger. You cannot use sorting algorithms.
How to sort numbers from STDIN
in programming, riddle / with 5 comments /
Related Posts:
[Riddle] simulation of behaviors in populationThere are things that aren’t interesting because they are complicated, but because they have simple solutions. Today I will present one of those riddl… Read More
How does recursive packing of a file changes its size?How the size of a packed file will change if you will pack it again? How will it change if you do that again and again? Will it be the same, bigger of… Read More
German tank problemSometimes science is applied in really amazing ways, one of examples is German tank problem. During World War II, the Allies observed that the Nazis c… Read More
The riddle of the stolen woodSometimes piles of wood are marked by paint to protect them against thiefs. Continuous line is painted on the trees that are on the top of the pile, i… Read More
How to prevent this program from printing anything?Place something instead of blanks to prevent below program from printing anything. #include <stdio.h> int main() { if ( &nbs… Read More
If you will use any algoritm to show them sorted, that algorythm might be called "sorting algorythm" and become illegal to use ;)
ReplyDeleteHi Alex,
ReplyDeletesure, you're right :)
I will precise this in that way: you can't use sort algorithms on data structure, that you are using to keep numbers after receiving them all from user.
What about storing them into the tree? ;) will the "left/root\right" way of extracting numbers from tree be treating as sorting algorithm then? ;)
ReplyDeleteI think, that it wouldn't be sorting :P
ReplyDeleteThere is plenty ways to do that, e.g. store new number in list in ordered way. This could be also done by storing numbers in array and then display smallest number and indicate in other array, that this element won't be displayed in next iteration. This would be repeated for all numbers in array.
i see :)
ReplyDelete