【题目描述】
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 ans=0;
for(int i=0;i<=31;i++,n>>=1){
if(n&1) ans++;
}
return ans;
}
};
本文介绍了一个函数,用于计算给定无符号整数的二进制表示中1位的数量,即汉明重量。通过位操作实现,代码简洁高效。
5161

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



