题目来源:
题目描述:
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) {
uint32_t tmp=1;
int ret=0;
while(tmp)
{
if(tmp&n)
ret++;
tmp=tmp<<1;
}
return ret;
}
};
很简单也很好想的暴力算法,把1挨个移位,然后相与
int hammingWeight(uint32_t n)
{
int res = 0;
while(n)
{
n &= n - 1;
++ res;
}
return res;
}
本文介绍了一种计算32位无符号整数二进制表示中1的个数的方法,即汉明重量。文章提供了两种算法实现:一种通过逐位左移并进行按位与操作来计数;另一种更高效的算法利用“n &= n-1”技巧删除最右侧的1,直至n变为0,其时间复杂度依赖于1的个数。
871

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



