码迷,mamicode.com
首页 > 其他好文 > 详细

Implement the integral part logn base 2 with bit manipulations

时间:2016-01-27 12:54:50      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/hygeia/p/5162672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!