文章目录

LeetCode地址:https://leetcode.com/problems/number-of-1-bits/

Problem:
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.

思路

  • 使用移位操作,每次将最后的最低位累加
  • 我想说一模一样的代码,JavaC++的执行效率真的相差挺大
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution {
public:
int hammingWeight(uint32_t n) {
int i=0;
int sum=0;
for(;i<32;i++)
{

sum+=n&0x1;
n=n>>1;
}

return sum;
}
};

the Runetime is 10ms

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Solution {
// you need to treat n as an unsigned value
public int hammingWeight(int n) {
int i=0;
int sum=0;
for(;i<32;i++)
{

sum+=n&0x1;
n=n>>1;
}

return sum;
}
}

the Runtime is 239ms


本作品采用[知识共享署名-非商业性使用-相同方式共享 2.5]中国大陆许可协议进行许可,我的博客欢迎复制共享,但在同时,希望保留我的署名权kubiCode,并且,不得用于商业用途。如您有任何疑问或者授权方面的协商,请给我留言

文章目录