I found this question online and have been struggling to come up with an answer to it on my own.
Bonus question I found. Write hello world in C without using a semicolon.
|
3
|
I found this question online and have been struggling to come up with an answer to it on my own. Bonus question I found. Write hello world in C without using a semicolon.
|
||||
|
|
|
Smallest number (for non-negative numbers):
Hello world:
Edit:A variation of the above function working for all integers:
|
||||||||||||||||||
|
|
|
Answer to bonus question:
|
||
|
|
The bonus question is quite easy:
although there are lots of semi-colons in the #include'd file - is that OK? Skizz |
||
|
|
|
Since 0 in C means false you could just do something like the following. All three args would have to be positive. I'm very rusty at C. so, Pseudo C:
|
||||||||||
|
|
|
You can use bit twiddling to get the min or two integers, also unlike the other answers which use repeated subtraction, this solution supports negative numbers. (min/max from http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax)
NOTE: this depends on integers being implemented with 2's complement. I think this is fair game since we are talking about using tricks to do something which has an obvious and simpler solution anyway. |
||||
|
|
|
Without using a comparison operator and handles negative numbers (using minmax)
|
||||||
|
|
|
Another example:
Yet another example:
Compile with:
|
||||||||||||
|
|
|
Here's my smallest of three solution. It doesn't use the inefficent while loop and appears to cope with negative values. I haven't tested it thoroughly but the maths looks OK to me:
Skizz |
||||||||||
|
|
|
Not the fastest implementation, but more general (ie computes the minimum of an arbitrary number of integers), works with negative numbers and reasonably clear:
|
||||
|
|
|
Reference: http://stackoverflow.com/questions/476800/comparing-two-integers-without-any-comparison Next, we can raise a question to compare four integers. :) |
||
|
|