zoukankan      html  css  js  c++  java
  • Bitwise AND of Numbers Range

    Bitwise AND of Numbers Range

    问题:

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

    思路:

      分治法

    我的代码:

    public class Solution {
        public int rangeBitwiseAnd(int m, int n) {
            if( m>n || m<=0 || n<=0) return 0;
            if(m == n)  return m;
            if(m == n-1)    return m&n;
            int mid = (m+n)/2;
            return  mid & rangeBitwiseAnd(m,mid-1) & rangeBitwiseAnd(mid+1,n); 
        }
    }
    View Code

    他人代码:

    public class Solution {
        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;
        }
    }
    View Code

    学习之处:

    • 我的想法很普通啊,很容易就想到了
    • 对于这种遍历所有数的问题,减少复杂度的方式有两种,第一种就是分治法做,另外一种就是抓出关键点,排除那些数字是不用考虑的,如本题中的奇数和偶数的最后一位进行&操作肯定是0
  • 相关阅读:
    今晚学到了2.2
    默默开始学英语了。
    VBScript连接数据库
    关于selenium截图
    Python异常处理try...except、raise
    Django中contenttype的应用
    Django Rest Framework
    scrapy信号扩展
    scrapy_redis使用
    Twisted模块
  • 原文地址:https://www.cnblogs.com/sunshisonghit/p/4461390.html
Copyright © 2011-2022 走看看