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.
feedback
|
|
Smallest number (for non-negative numbers):
Hello world:
Edit:A variation of the above function working for all integers:
| |||||||||||||||||||
feedback
|
|
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. | |||||
feedback
|
|
Without using a comparison operator and handles negative numbers (using minmax)
| |||||||||
feedback
|
|
The bonus question is quite easy:
although there are lots of semi-colons in the #include'd file - is that OK? Skizz | |||
|
feedback
|
|
Answer to bonus question:
| |||||||
feedback
|
|
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:
| |||||||||||
feedback
|
|
Another example:
Yet another example:
Compile with:
| |||||||||||||||
feedback
|
|
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 | |||||||||||||
feedback
|
|
| |||
|
feedback
|
|
Not the fastest implementation, but more general (ie computes the minimum of an arbitrary number of integers), works with negative numbers and reasonably clear:
| |||||
feedback
|
|
Reference: http://stackoverflow.com/questions/476800/comparing-two-integers-without-any-comparison Next, we can raise a question to compare four integers. :) | |||
|
feedback
|
|
for second part
| |||
|
feedback
|
Above program is working, but i dint get logic......why shifting 31 times??? | ||||
|
feedback
|