其他分享
首页 > 其他分享> > 剑指offer 前n个数二进制中1的个数

剑指offer 前n个数二进制中1的个数

作者:互联网

力扣题目链接
位运算

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;
    }
}

标签:countBits,return,nums,二进制,offer,个数,int
来源: https://www.cnblogs.com/jianjiana/p/15861670.html