标签:public ret lintcode class ntc one 源码 == math
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;
}
};
标签:public ret lintcode class ntc one 源码 == math
原文地址:http://www.cnblogs.com/temporary/p/7493049.html