191. Number of 1 Bits
一位一位算。
public class Solution {
// you need to treat n as an unsigned value
public int hammingWeight(int n) {
int res = 0;
while(n != 0){
res += (n & 1) == 1? 1:0;
n >>>= 1;
}
return res;
}
}