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

338. Counting Bits

时间:2016-07-11 07:53:52      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

    // An easy recurrence for this problem is f[i] = f[i / 2] + i % 2.
   /*
    * 338. Counting Bits
    * 2016-7-10 by Mingyang
    */
    public int[] countBits(int num) {
        int[] f = new int[num + 1];
        for (int i = 1; i <= num; i++)
            f[i] = f[i >> 1] + (i & 1);
        return f;
    }

 

338. Counting Bits

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5659086.html

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