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

Bitwise AND of Numbers Range

时间:2015-06-28 15:22:19      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

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.

这道题我就不说什么了,偷瞄的别人的,这么绝的解法无论如何也想不出:https://leetcode.com/discuss/35057/share-my-simple-java-solution

大概思想:如果m!=n,那么range[m,n]所有数最后一位相与必定为0,因为[m,n]必定存在奇偶数,按照此方法通过将m,n同时右移一位即可得到倒数第二位的值,依次类推。

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

 

Bitwise AND of Numbers Range

标签:

原文地址:http://www.cnblogs.com/mrpod2g/p/4605471.html

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