Leetcode 191. Number of 1 Bits (Easy) (cpp)
Tag: Bit Manipulation
Difficulty: Easy
/*
191. Number of 1 Bits (Easy)
Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight).
For example, the 32-bit integer ’11' has binary representation 00000000000000000000000000001011, so the function should return 3.
*/
class Solution {
public:
int hammingWeight(uint32_t n) {
int res;
while (n > 0) {
res += n & 0x1;
n = n >> 1;
}
return res;
}
};
本文提供了一个简单的C++解决方案来解决LeetCode上的191题:Number of 1 Bits。该题要求计算一个无符号整数中1的二进制位数。文中展示了一个迭代方法,通过不断将数字右移并检查最低位是否为1来统计1的数量。

905

被折叠的 条评论
为什么被折叠?



