191. 位1的个数
为保证权益,题目请参考 191. 位1的个数(From LeetCode).
解决方案1
CPP
C++
#include <iostream>
#include <climits>
#include <stdint.h>
using namespace std;
class Solution {
public:
int hammingWeight(uint32_t n) {
uint32_t t = 1;
int ans = 0;
for(int i=0;i<32;++i){
if(n & t){
ans ++;
}
t = t << 1;
}
return ans;
}
};
int main() {
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24