1. 程式人生 > >區間數字的按位與 Bitwise AND of Numbers Range

區間數字的按位與 Bitwise AND of Numbers Range

light 數字 == mov 描述 ron actor 奇偶數 bubuko

2018-08-13 22:50:51

問題描述:

技術分享圖片

問題求解:

首先如果m 和 n不相等,那麽必然會有至少一對奇偶數,那麽必然末尾是0。

之後需要將m 和 n將右移一位,直到m 和 n相等。

本質上,本題就是求m 和 n的最長preSubNum。

    public int rangeBitwiseAnd(int m, int n) {
        if (m == 0) return 0;
        int moveFactor = 1;
        while (m != n) {
            m >>= 1;
            n >>= 1;
            moveFactor <<= 1;
        }
        return m * moveFactor;
    }

區間數字的按位與 Bitwise AND of Numbers Range