给定一个非负整数 num。对于 0 ≤ i ≤ num 范围中的每个数字 i ,计算其二进制数中的 1 的数目并将它们作为数组返回。 复制代码
示例:
输入: 2 输出: [0,1,1] 输入: 5 输出: [0,1,1,2,1,2] 复制代码
思考:
二进制数中,奇数中的1的个数,与比它小1的偶数相比多一个,即个位上的1。 例如: 3 11 2 10 5 101 4 100 二进制中,偶数中的1的个数,等于原偶数除以2的结果中的1的个数。因为偶数末尾为0,除以2,二进制中即为去掉末尾的0。 例如: 4 100 2 10 1 1 又因为数字0中1的个数为0,所以有1中1的个数为1,2中1的个数等于2/2=1中1的个数,以此类推。 复制代码
实现:
class Solution { public int[] countBits(int num) { int[] result = new int[num + 1]; result[0] = 0; for (int count = 1; count <= num; count++) { if (count % 2 == 1) { result[count] = result[count - 1] + 1; } else { result[count] = result[count / 2]; } } return result; } }复制代码
以上所述就是小编给大家介绍的《LeetCode每日一题:比特位计数(No.338)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Beginning iPhone and iPad Web Apps
Chris Apers、Daniel Paterson / Apress / 2010-12-15 / USD 39.99
It seems that everyone and her sister has developed an iPhone App—everyone except you, the hard-working web professional. And now with the introduction of the iPad, you may even feel farther behind. B......一起来看看 《Beginning iPhone and iPad Web Apps》 这本书的介绍吧!