zoukankan      html  css  js  c++  java
  • LintCode 二级制中有多少个1

    public class Solution {
        /**
         * @param num: an integer
         * @return: an integer, the number of ones in num
         */
         
         /*
            负数的二进制是其绝对值的补码(反码+1)
            1 源码:  0001
            1 反码:  1110
            1 补码:  1111
             -1     :   1111
         */
        public int countOnes(int num) {
            // write your code here
             int countZero=0,countOne=0;
             int abs=num;
             boolean isPlus=true;  //正数
             if(num<0)
             {
                abs=Math.abs(num+1);
                isPlus=false;
                 
             }
             int index=32;
             while(abs!=0)
             {
               
                 if((abs%2==1 && isPlus )|| (!isPlus && abs%2==0))
                 {
                     countOne++;
                 }
                 abs>>=1; //右移1 相当于除2
                 index--;
             }
             if(num<0)
                countOne+=index;  //负数要往前面补一
            return countOne;
        }

    };

  • 相关阅读:
    mariadb密码问题
    高性能负载均衡之算法
    高性能负载均衡之分类架构
    Python之Web2py框架使用
    这个世界上总有比你更努力的朋友
    2015年度新增开源软件排名TOP100
    Netty4.0 用户指南
    C#语言
    C# 注释
    .NET中XML 注释 SandCastle 帮助文件.hhp 使用HTML Help Workshop生成CHM文件
  • 原文地址:https://www.cnblogs.com/temporary/p/7493049.html
Copyright © 2011-2022 走看看