leetcode 338. Counting Bits,剑指offer二进制中1的个数

Posted 去做点事情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 338. Counting Bits,剑指offer二进制中1的个数相关的知识,希望对你有一定的参考价值。

leetcode是求当前所有数的二进制中1的个数,剑指offer上是求某一个数二进制中1的个数

https://www.cnblogs.com/grandyang/p/5294255.html 第三种方法,利用奇偶性找规律 

class Solution {
public:
    vector<int> countBits(int num) {
        vector<int> result{0};
        for(int i = 1;i <= num;i++){
            if(i % 2 == 0)
                result.push_back(result[i/2]);
            else
                result.push_back(result[i/2] + 1);
        }
        return result;
    }
};

 

 

 

class Solution {
public:
     int  NumberOf1(int n) {
         int count = 0;
         while(n){
             n = (n-1) & n;
             count++;
         }
         return count;
     }
};

 

以上是关于leetcode 338. Counting Bits,剑指offer二进制中1的个数的主要内容,如果未能解决你的问题,请参考以下文章

leetcode [338]Counting Bits

LeetCode 338. Counting Bits

LeetCode338. Counting Bits (2 solutions)

LeetCode 338. Counting Bits

LeetCode 338. Counting Bits

[Leetcode] 338. Counting Bits