首页 > 其他 > 详细

Bitwise AND of Numbers Range

时间:2015-12-17 00:38:11      阅读:248      评论:0      收藏:0      [点我收藏+]

Bitwise AND of Numbers Range

Total Accepted: 24968 Total Submissions: 89204 Difficulty: Medium

 

Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise AND of all numbers in this range, inclusive.

For example, given the range [5, 7], you should return 4.

class Solution {
public:
    int rangeBitwiseAnd(int m, int n) {
        int d = 0;
        while(m!=n){
            m >>= 1 ;
            n >>= 1 ;
            d++;
        }
        return m<<d;
    }
};

Bitwise AND of Numbers Range

原文:http://www.cnblogs.com/zengzy/p/5052753.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!