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

LeetCode "Bitwise AND of Numbers Range"

时间:2015-04-16 14:07:47      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

Just picture the shifting process in your mind..

class Solution {
public:
    int rangeBitwiseAnd(int m, int n) {
        if (m == n) return m;
        int r = 0;
        int cnt = 0;
        while (m && m < n)
        {    
            cnt++;
            m >>= 1;
            n >>= 1;
        }
        if (m == n && m > 0)
            r = m << cnt;
        return r;
    }
};

LeetCode "Bitwise AND of Numbers Range"

标签:

原文地址:http://www.cnblogs.com/tonix/p/4431765.html

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