如何将一个大整数转换为由连续的两位整数组成的数组?

huangapple go评论99阅读模式
英文:

How can I turn a large integer into an array of successive two-digit integers?

问题

我想将一个n位整数j(其中n是2的幂次)转换为一个int[]数组,其中每个int[i]是由j的连续数字组成的两位整数。

所以如果

  1. int j = 357642466853;
  2. int[] digArray = {35, 76, 42, 46, 68, 53};

我开始尝试以下方法,但陷入了困境。如果我使用String.valueOf或.charAt,它最终会将这些相应的数据类型发送到数组,尽管我希望它是一个int[]数组。

  1. int[] digArray = new int[intLength/2]; //intLength只是n
  2. for(int i = 0; i < intLength; i += 2) {
  3. digArray[i/2] = (String.valueOf(j).charAt(i)); //注意这还不完整,因为我甚至不知道如何在第二位数字上进行连接。
  4. }

也许我需要创建一个string[]数组,然后在完成后将其转换为int[]数组?

谢谢。

英文:

I want to take an n-digit integer j (where n is a power of two) and turn it into an int[ ] where each int[ i ] is a two-digit integer set by the successive digits of j.

So if

int j = 357642466853

int[ ] digArray = {35, 76, 42, 46, 68, 53}

I started down the following route but have gotten bogged down. If I use String.valueOf or .charAt it ends up sending those respective data types to the array, even though I want it to be an int[].

  1. int[] digArray = new int[intLength/2] //intLength is just n
  2. for(int i = 0; i &lt; intLength; i += 2) {
  3. digArray[i/2] = (String.valueOf(j).charAt(i)) //Note this isn&#39;t complete as I don&#39;t even know how to concatenate on the second digit.
  4. }

Possibly I need to make a string[] and then once I'm done convert it into an int[]?

Thanks.

答案1

得分: 2

你可以在这里使用取模运算:

  1. long j = 357642466853L;
  2. long[] digArray = new long[(int)(Math.log10(j) / 2) + 1];
  3. for (int i=digArray.length - 1; i >= 0; --i) {
  4. digArray[i] = j % 100L;
  5. j /= 100;
  6. }
  7. System.out.println(Arrays.toString(digArray));

这将打印出:

  1. [35, 76, 42, 46, 68, 53]
英文:

You could use the modulus here:

  1. long j = 357642466853L;
  2. long[] digArray = new long[(int)(Math.log10(j) / 2) + 1];
  3. for (int i=digArray.length - 1; i &gt;= 0; --i) {
  4. digArray[i] = j % 100L;
  5. j /= 100;
  6. }
  7. System.out.println(Arrays.toString(digArray));

This prints:

  1. [35, 76, 42, 46, 68, 53]

答案2

得分: 1

另一种实现方式如下:

  1. for (long v : new long[]{ 357642466853L, 1234L, 29228912L}) {
  2. System.out.println(v + " " + Arrays.toString(longToGroups(v)));
  3. }
  4. public static long[] longToGroups(long val) {
  5. int exp = (int)Math.log10(val);
  6. exp -= (exp % 2); // 调整为奇数位长的情况
  7. long start = (long)(Math.pow(10, exp));
  8. return LongStream
  9. .iterate(start, i -> i > 0, i -> i / 100)
  10. .map(i -> (val / i) % 100).toArray();
  11. }

输出结果为:

  1. 357642466853 [35, 76, 42, 46, 68, 53]
  2. 1234 [12, 34]
  3. 29228912 [29, 22, 89, 12]
英文:

And yet another way to do it.

  1. for (long v : new long[]{ 357642466853L, 1234L,29228912L}) {
  2. System.out.println(v + &quot; &quot; + Arrays.toString(longToGroups(v)));
  3. }
  4. public static long[] longToGroups(long val) {
  5. int exp = (int)Math.log10(val);
  6. exp -= (exp % 2); // adjust for odd length longs
  7. long start =(long)(Math.pow(10,
  8. exp));
  9. return LongStream
  10. .iterate(
  11. start,
  12. i -&gt; i &gt; 0, i -&gt; i / 100)
  13. .map(i -&gt; (val / i) % 100).toArray();
  14. }

Prints

  1. 357642466853 [35, 76, 42, 46, 68, 53]
  2. 1234 [12, 34]
  3. 29228912 [29, 22, 89, 12]
  4. </details>

huangapple
  • 本文由 发表于 2020年9月17日 09:52:50
  • 转载请务必保留本文链接:https://go.coder-hub.com/63930165.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定