码迷,mamicode.com
首页 > 其他好文 > 详细

bit 相关问题笔记

时间:2016-09-16 07:51:56      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

1. Counting Bits

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].

 

思路: 主要考察二进制数性质的, 即如果A/2 = B, 那么A比B多了一位, 并且A和B出了A的二进制的右边的一位以外其他都一样, 举个栗子A = 11, 二进制就是1011, B = 5, 二进制是101, 所以我们可以看出其最左边是相等的, 只有A的最后一位不等. 

那么我们可以得出一个结论, 如果A/2  = B, 那么A有多少个1取决于B有多少个1和A最右边一位二进制数是0还是1. 如果A最右边一位是1, 那么A比B多一个1, 否则他们具有相等的1.

技术分享
1 public class Solution {
2     public int[] countBits(int num) {
3         int[] vec = new int[num + 1];  
4         for(int i =1; i <= num; i++)  
5             vec[i] = vec[i/2] + i%2;     
6         return vec;  
7     }
8 }
View Code

 

bit 相关问题笔记

标签:

原文地址:http://www.cnblogs.com/jiangchen/p/5875847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!