Implement the integral part logn base 2 with bit manipulations

Implement the integral part logn base 2 with bit manipulations

 

int integralPartOfLog(unsigned int n)
{

    int ret = 0;
    
    while (n > 0) {
        n = n>>1;
        ret++;
    }
    
    return ret-1;
}

 

你可能感兴趣的:(Implement the integral part logn base 2 with bit manipulations)