leet-code/src/main/java/leetcode/editor/cn/CountingBits.java
2022-09-19 21:59:36 +08:00

75 lines
1.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//给你一个整数 n ,对于 0 <= i <= n 中的每个 i ,计算其二进制表示中 1 的个数 ,返回一个长度为 n + 1 的数组 ans 作为答案。
//
//
//
//
//
//
// 示例 1
//
//
//输入n = 2
//输出:[0,1,1]
//解释:
//0 --> 0
//1 --> 1
//2 --> 10
//
//
// 示例 2
//
//
//输入n = 5
//输出:[0,1,1,2,1,2]
//解释:
//0 --> 0
//1 --> 1
//2 --> 10
//3 --> 11
//4 --> 100
//5 --> 101
//
//
//
//
// 提示:
//
//
// 0 <= n <= 10⁵
//
//
//
//
// 进阶:
//
//
// 很容易就能实现时间复杂度为 O(n log n) 的解决方案,你可以在线性时间复杂度 O(n) 内用一趟扫描解决此问题吗?
// 你能不使用任何内置函数解决此问题吗C++ 中的 __builtin_popcount
//
//
//
// Related Topics 位运算 动态规划 👍 967 👎 0
package leetcode.editor.cn;
//338:比特位计数
public class CountingBits {
public static void main(String[] args) {
Solution solution = new CountingBits().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int[] countBits(int n) {
int[] arrs = new int[n + 1];
for (int i = 0; i <= n; i++) {
arrs[i] = Integer.bitCount(i);
}
return arrs;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}