191. 位1的个数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了191. 位1的个数相关的知识,希望对你有一定的参考价值。

 1 class Solution 
 2 {
 3 public:
 4     int hammingWeight(uint32_t n) 
 5     {
 6         int res = 0;
 7         for(int i = 0;i < 32;i ++) res += (n >> i) & 1;
 8         return res;
 9     }
10 };

 

以上是关于191. 位1的个数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 191.位1的个数

Leetcode 191.位1的个数 By Python

leetcode 191 位1的个数

LeetCode-位1的个数-题号191-Java实现

LeetCode-位1的个数-题号191-Java实现

LeetCode(算法)- 191. 位 1 的个数