zoukankan      html  css  js  c++  java
  • 【leetcode】338 .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].

    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.
    Credits:
    Special thanks to @ syedee for adding this problem and creating all test cases.

    解析

    给一个数字,计算从0到该数字的二进制1的个数
    不允许使用内置函数

    思路

    我的解法。。使用了内置函数
    最优解:因为*2可以表示为<<2,即一个数的两倍和它的一半的1的个数和这个数相同;也即,若一个数除以2可以除尽,则1的个数就是n/2的1的个数,若除不尽,则为n/2+1

    我的解法

    public int[] countBits(int num) {
            int[] result = new int[num + 1];
            for (int i = 0; i <= num; i++) {
                result[i] = Integer.bitCount(i);
            }
            return result;
        }
    

    最优解

    public int[] countBitsOptimize(int num) {
            int[] result = new int[num + 1];
            for (int i = 1; i <= num; i++) {
                result[i] = result[i >> 1] + (i & 1);
            }
            return result;
        }
    
  • 相关阅读:
    C89和C99区别--简单总结
    C语言 值传递和地址传递
    对于.h文件和.c文件
    C语言-------多文件编译
    数据结构之第二章线性表
    数据结构之第一章一些概念
    JS-prototype的掌握
    JS-return的使用
    分分钟搞懂JS-闭包函数
    JS-面向对象-封装
  • 原文地址:https://www.cnblogs.com/shanelau/p/7238067.html
Copyright © 2011-2022 走看看