I think the question is pretty clear: I have three numbers, I have two functions, min and max.
What are the fastest implementations?
|
I think the question is pretty clear: I have three numbers, I have two functions, min and max. What are the fastest implementations? |
||||
| show 3 more comments |
|
The C standard (C99) provides the
|
||||
|
|
|
Naive solution is two use two comparisons to find the min and then two comparisons to find the max. This is suboptimal since three comparisons suffice (pseudocode returning (min, max) tuple follows):
(This is written to be most readable, rather than to minimize the branch count) This performs between 2 and 3 comparisons. It is impossible to use only 2 comparisons since there are 3! = 6 reorderings of 3 floats and 2 comparisons can only differentiate between 4 different ones. This is easily seen on a decision tree of the problem. In practice one should rely for optimizations like this one on the compiler. |
|||||||
|
|
Code to find the greatest of three numbers.
Reverse the logic to find the least :) |
|||
|
|
|
I liked Adam Zalcman's approach so much, I rewrote it in C, this time minimising branches too (so at most 3 comparisons and 3 branches).
(this may be degenerating into code golf now though ...) |
|||||||
|
NaNs? – Mat Nov 15 '11 at 11:27