1. Description

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

2. Answer 

public class Solution {
    public int[] countBits(int num) {
        int[] result = new int[num + 1];
        for (int i = 1; i <= num; i++) {
            result[i] = result[i & (i - 1)] + 1;
        }
        
        return result;
    }
}

 

相关文章:

  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2021-06-12
  • 2021-05-22
  • 2021-07-12
猜你喜欢
  • 2021-11-30
  • 2021-04-24
  • 2021-12-09
  • 2021-05-30
  • 2021-10-21
  • 2022-12-23
相关资源
相似解决方案