博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 338. Counting Bits
阅读量:5108 次
发布时间:2019-06-13

本文共 929 字,大约阅读时间需要 3 分钟。

Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and return them as an array.

Example:For num = 5 you should return [0,1,1,2,1,2].  Follow up:It is very easy to come up with a solution with run time O(n*sizeof(integer)). But can you do it in linear time O(n) /possibly in a single pass?Space complexity should be O(n).Can you do it like a boss? Do it without using any builtin function like __builtin_popcount in c++ or in any other language.

思路:dp思想,dp[i] = dp[i&(i-1)] + 1解释一下为什么,dp[i]表示i的二进制1的个数,首先i&(i-1)表示i去掉其二进制最右边的1得到的数x。那么dp[i]肯定是dp[x+1]得到。比如,dp[8] = dp[0] + 1

class Solution {public:    vector
countBits(int num) { vector
ans(num+1, 0); for (int i = 1; i <= num; ++i) ans[i] = ans[i&(i-1)] + 1; return ans; }};

转载于:https://www.cnblogs.com/pk28/p/8551764.html

你可能感兴趣的文章
Hash和Bloom Filter
查看>>
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>
Yii2 Lesson - 03 Forms in Yii
查看>>
Python IO模型
查看>>
Ugly Windows
查看>>
DataGridView的行的字体颜色变化
查看>>
Java再学习——关于ConcurrentHashMap
查看>>
如何处理Win10电脑黑屏后出现代码0xc0000225的错误?
查看>>
局域网内手机访问电脑网站注意几点
查看>>
c++ STL
查看>>
json数据在前端(javascript)和后端(php)转换
查看>>