Find maximum of three number in C without using conditional statement and ternary operator

前端 未结 13 1802
日久生厌
日久生厌 2020-11-29 22:25

I have to find maximum of three number provided by user but with some restrictions. Its not allowed to use any conditional statement. I tried using ternary operator like bel

13条回答
  •  有刺的猬
    2020-11-29 22:59

    Just to add another alternative to avoid conditional execution (which is not the one I would use, but seemed missing from the set of solutions):

    int max( int a, int b, int c ) {
       int l1[] = { a, b };
       int l2[] = { l1[ a

    The approach uses (as most others), the fact that the result of a boolean expression when converted to int yields either 0 or 1. The simplified version for two values would be:

    int max( int a, int b ) {
       int lookup[] { a, b };
       return lookup[ a < b ];
    }
    

    If the expression a is correct we return b, carefully stored in the first index of the lookup array. If the expression yields false, then we return a that is stored as element 0 of the lookup array. Using this as a building block, you can say:

    int max( int a, int b, int c ) {
       int lookup[ max(a,b), c ];
       return lookup[ max(a,b) < c ];
    }
    

    Which can be trivially transformed to the code above by avoiding the second call to the inner max using the result already stored in lookup[0] and inlining the original call to max(int,int).


    (This part is just another proof that you have to measure before jumping into conclusions, see the edit at the end)

    As to which would I actually use... well, probably the one by @Foo Baa here modified to use an inline function rather than a macro. The next option would be either this one or the one by @MSN here.

    The common denominator of these three solutions not present in the accepted answer is that they do not only avoid the syntactic construct of if or the ternary operator ?:, but that they avoid branching altogether, and that can have an impact in performance. The branch-predictor in the CPU cannot possibly miss when there are no branches.


    When considering performance, first measure then think

    I have actually implemented a few of the different options for a 2-way max, and analyzed the generated code by the compiler. The following three solutions generate all the same assembly code:

    int max( int a, int b ) { if ( a < b ) return b; else return a; }
    int max( int a, int b ) { return (a < b? b : a ); }
    int max( int a, int b ) {
       (void)((a < b) && (a = b));
       return a;
    }
    

    Which is not surprising, since all of the three represent the exact same operation. The interesting bit of information is that the generated code does not contain any branch. The implementation is simple with the cmovge instruction (test carried out with g++ in an intel x64 platform):

    movl    %edi, %eax       # move a into the return value
    cmpl    %edi, %esi       # compare a and b
    cmovge  %esi, %eax       # if (b>a), move b into the return value
    ret
    

    The trick is in the conditional move instruction, that avoids any potential branch.

    None of the other solutions has any branches, but all of them translate to more cpu instructions than any of this, which at the end of the day reassures us that we should always write simple code and let the compiler optimize it for us.

提交回复
热议问题