二进制中1的个数
程序员文章站
2022-03-08 17:24:00
...
public int hammingWeight(int n) {
int cnt = 0;
while (n != 0) {
cnt ++;
n = n & (n - 1);
}
return cnt;
}