LeetCode题解之Counting Bits
Posted 山里的小勇子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode题解之Counting Bits相关的知识,希望对你有一定的参考价值。
1、题目描述
2、问题分析
利用bitset.
3 代码
1 vector<int> countBits(int num) { 2 vector<int> v; 3 for(int i = 0; i <= num; i++){ 4 bitset<32> b(i); 5 v.push_back( b.count() ); 6 } 7 8 return v; 9 }
以上是关于LeetCode题解之Counting Bits的主要内容,如果未能解决你的问题,请参考以下文章