【leetcode】Number of 1 Bits (easy)

做太多遍了,秒杀。

class Solution {
public:
    int hammingWeight(uint32_t n) {
        int num = 0;
        for(;n; n &=(n-1), num++);
        return num;
    }
};
原文地址:https://www.cnblogs.com/dplearning/p/4344854.html