0

我有一个代码,当我使用大数字时,它会给出不正确的输出。我想要一个解决方案,我该如何改进它以适应大数字。 我应该使用哪种数据类型?

代码:

    static int get(int n,int i,int digit)
    {
      int p;
      p=(int)Math.pow(10,i-1);
      n=n/p;
      return n%10;
    }
    static boolean check_pal(int n)
    {
      int digit;
      digit=(int) (Math.log10(n)+1);
      int a=0,b=0,i,j,p;
      int sum=0;
      for(i=1,j=digit-1 ; i<=digit ; i++,j-- )
      {
        a=(int) get(n,i,digit);
        sum+=a*Math.pow(10,j);
      }
      if(sum==n)
        return true;
      else
        return false;
    }
    static int reverse(int n)
    {
        int digit;
        digit=(int) (Math.log10(n)+1);
        int a=0,b=0,i,j,p;
        int sum=0;
        for(i=1,j=digit-1 ; i<=digit ; i++,j-- )
        {
            a=(int) get(n,i,digit);
            sum+=a*Math.pow(10,j);
        }
        return n+sum;
    }
    public static void main(String[] args) {

    try{
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        if(n<10 || n>999){
          System.out.println("None");   
            return;}
        boolean c;

        for(int i=1 ; i<=100 ; i++)
        {
            System.out.println("iteration"+i+" value is "+n);
        c=check_pal(n);
        if(c==true)
        {
            System.out.println(n);
            return;
        }

        n=reverse(n);
    }
    System.out.println("None");
    }

    catch(Exception e)
    {
       System.out.println("NONE"); 
    }
    }

这是输出: 输出

在输出中,第 17 次迭代得到负值,这表明溢出。我想要一个解决方案,以便它适用于 10 到 999 之间的所有输入。

这里是问题定义点击这里!!

4

2 回答 2

5

您可以使用java.math.BigInteger类:

http://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html

于 2013-11-12T09:28:10.463 回答
2

您可以使用 long 而不是 int:

static long get(long n,long i,long digit)
    {
      long p;
      p=(long)Math.pow(10,i-1);
      n=n/p;
      return n%10;
    }

static boolean check_pal(long n)
    {
      long digit;
      digit=(long) (Math.log10(n)+1);
      long a=0,b=0,i,j,p;
      long sum=0;
      for(i=1,j=digit-1 ; i<=digit ; i++,j-- )
      {
        a=(long) get(n,i,digit);
        sum+=a*Math.pow(10,j);
      }
      if(sum==n)
        return true;
      else
        return false;
    }

static long reverse(long n)
    {
        long digit;
        digit=(long) (Math.log10(n)+1);
        long a=0,b=0,i,j,p;
        long sum=0;
        for(i=1,j=digit-1 ; i<=digit ; i++,j-- )
        {
            a=(long) get(n,i,digit);
            sum+=a*Math.pow(10,j);
        }
        return n+sum;
    }

迭代 25 值为 8813200023188

顺便说一句:您的 check_pal 方法可能要短得多:

 static boolean check_pal(long n){
    return reverse(n) == n;
 }

 static long reverse(long n)
    {
        long digit;
        digit=(long) (Math.log10(n)+1);
        long a=0,b=0,i,j,p;
        long sum=0;
        for(i=1,j=digit-1 ; i<=digit ; i++,j-- )
        {
            a=(long) get(n,i,digit);
            sum+=a*Math.pow(10,j);
        }
        return sum;
    }

 static long reverseAndAdd(long n){
     return n + reverse(n);
 }

(注意我更改了 reverse 方法的最后一行并添加了一个 reverseAndAdd,因为您的 reverse 没有按照它所说的那样做:-))

于 2013-11-12T09:40:55.320 回答