[E位运算] lc191. 位1的个数(位运算+lowbit()+水题)
Posted Ypuyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[E位运算] lc191. 位1的个数(位运算+lowbit()+水题)相关的知识,希望对你有一定的参考价值。
1. 题目来源
链接:191. 位1的个数
2. 题目解析
老题了,无非就是枚举每一位,n&(n-1)
,lowbit()
这三种操作来求得二进制串中的 1 的个数。
时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( 1 ) O(1) O(1)
class Solution {
public:
int hammingWeight(uint32_t n) {
int res = 0;
while (n) {
n = n & n - 1;
res ++ ;
}
return res;
}
};
class Solution {
public:
int hammingWeight(uint32_t n) {
int res = 0;
while (n) {
n -= n & -n;
res ++ ;
}
return res;
}
};
以上是关于[E位运算] lc191. 位1的个数(位运算+lowbit()+水题)的主要内容,如果未能解决你的问题,请参考以下文章
Lc_剑指Offer15二进制中1的个数--------位运算