位1的个数⚓︎ Leetcode题目链接 描述⚓︎ 详见中文题目链接。 解答⚓︎ 1 2 3 4 5 6 7 8 9 10 11class Solution { public: int hammingWeight(uint32_t n) { int res = 0; while (n) { n = n & (n - 1); res++; } return res; } };