LeetCode338. 比特位计数(位运算)
Posted Whisperbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode338. 比特位计数(位运算)相关的知识,希望对你有一定的参考价值。
给定一个非负整数?num。对于?0 ≤ i ≤ num 范围中的每个数字?i?,计算其二进制数中的 1 的数目并将它们作为数组返回。
示例 1:
输入: 2
输出: [0,1,1]
示例?2:
输入: 5
输出: [0,1,1,2,1,2]
解法1:使用库函数
class Solution {
public int[] countBits(int num) {
int[] arr = new int[num + 1];
for(int i = 0; i <= num; i++){
arr[i] = Integer.bitCount(i);
}
return arr;
}
}
解法二:
class Solution {
public int[] countBits(int num) {
int[] arr = new int[num + 1];
for(int i = 1; i <= num; i++){
arr[i] = arr[(i & i- 1)] + 1;
}
return arr;
}
}
以上是关于LeetCode338. 比特位计数(位运算)的主要内容,如果未能解决你的问题,请参考以下文章