为什么 Collat​​z 猜想程序不适用于 Java 中的大整数

Raj*_*ina 1 java math integer-overflow collatz

这是我在 Java 上模拟 Collat​​z 猜想的程序:

import java.util.*;
public class Collatz {
public static void main(String args[]){
    Scanner raj= new Scanner(System.in);
    int n;
    int k=0;
    System.out.print("n? ");
    n = raj.nextInt();
    while(n > 1){
        if(n%2 ==1){
            n=3*n+1;
            System.out.println(n);
            k++;
        }
        if(n%2==0){
            n=n/2;
            System.out.println(n);
            k++;
        }

    }
    System.out.print("It took " + k + " iterations!");
}

}
Run Code Online (Sandbox Code Playgroud)

当我输入 n=6 时,我得到

3 10 5 16 8 4 2 1 迭代了 8 次!

但是当我输入 n= 63728127 时,我得到

191184382 95592191 286776574 143388287 430164862 215082431 645247294 322623647 967870942 483935471 1451806414 725903207 -211 7257674 -1058628837 迭代了14次!

什么地方出了错?为什么?我该如何修复它?谢谢!

Ant*_*ony 5

这是整数溢出的典型案例。Java 中原始整数的范围是有限的。解决方案是始终使用BigInteger之类的东西如果必须处理大整数,

顺便说一句,如果 Java 像几乎所有其他现代语言一样支持运算符重载,事情就会容易得多。

import java.util.*;
import java.math.BigInteger;


public class Collatz {
    public static void main(String args[]){
        Scanner raj= new Scanner(System.in);
        int k=0;
        System.out.print("n? ");

        BigInteger n = BigInteger.valueOf(raj.nextLong());

        while(n.compareTo(BigInteger.ONE) > 0){
            if(n.testBit(0)){
                n = n.multiply(BigInteger.valueOf(3));
                n = n.add(BigInteger.ONE);
                System.out.println(n);
                k++;
            }
            else {
                n = n.divide(BigInteger.valueOf(2));
                System.out.println(n);
                k++;
            }
        }
        System.out.print("It took " + k + " iterations!");
    }
}
Run Code Online (Sandbox Code Playgroud)