力扣题目链接
位运算
class Solution {
public int[] countBits(int n) {
int[] nums = new int[n+1];
for(int i=0;i<=n;++i){
for(int j=0;j<32;++j){
nums[i] += (i>>j) &1;
}
}
return nums;
}
}