public class Solution {
/**
* @param num: the num
* @return: the array subject to the description
*/
public int[] calculateNumber(int num) {
int t, x, y = 0, i;
String s = “”;
x = num;
while (x != 0) {
t = x % 2;
x /= 2;
if (t == 1)
y++;
s = t + s;
}
// System.out.println(s);
int[] r = new int[y + 1];
r[0] = y;
int j=1;
for (i = 0; i < s.length(); i++) {
if (s.charAt(i) == ‘1’)
r[j++] = i + 1;
}http://www.yezidianjing.com/
return r;
}
}
阿里云天池
最新推荐文章于 2024-07-29 19:53:29 发布
本文介绍了一个Java方法,该方法接收一个整数参数并返回一个数组。数组的第一个元素为输入整数的二进制表示中1的个数,其余元素为1所在的位置。通过递归除以2并对余数进行分析,实现对二进制位的计数及位置记录。
摘要由CSDN通过智能技术生成