java – Fibonacci序列算法

我试图在Fibonacci序列中找到第一个包含N位数的数字(N在500和2000范围内的某个位置).我尝试使用以下代码执行此操作:

BigInteger num = BigInteger.valueOf(2);
BigInteger num1 = BigInteger.ONE;
BigInteger num2 = BigInteger.ONE;
int record = 0;
BigInteger TEN = BigInteger.valueOf(10);

public BigInteger run()
{
    BigInteger temp = BigInteger.ZERO;
    while(num2.compareTo(TEN.pow(SomeN - 1)) < 0)
    {
        if(num2.compareTo(TEN.pow(record + 1)) >= 0)
        {
            System.out.println(""+record);
            record++;
        }

        temp = num1.add(num2);
        num1 = num2;
        num2 = temp;

        num = num.add(BigInteger.ONE);
    }
    System.out.println(""+num);
    System.out.println(""+num2);
    return num2;
}

问题是,当我测试1500位数时,我得到的答案显然是错误的.我不知道应该是什么答案,我甚至在它周围检查了答案,以防我的算法以10的幂关闭(即我检查了1499位和1501),但无济于事.有谁看到了什么问题?

解决方法:

(删除基本提示的方式)

编辑:EP网站已备份,我在使用您的代码时得到的答案符合网站接受的对我来说正确的方式.

上一篇:java – 动态编程实现不好或HashMap慢?


下一篇:【LEETCODE】44、509. Fibonacci Number