我試圖運行一個程序,在斐波那契數列中找到第n個序列;但是,問題是,我想在其中實現BigInteger,因此它可以運行1000甚至更多的值。Java斐波那契數列BigInteger
有什麼方法可以有效地添加它?
import java.util.*;
import java.math.*;
public class fib {
//Arkham
/*public static BigInteger fibonacci2(int n) {
if (n == 0 || n == 1) {
return BigInteger.ONE;
}
return fibonacci2(n - 2).add(fibonacci2(n-1));
}*/
public static int Fibonacci(int n) {
int num = Math.abs(n);
if (num == 0) {
return 0;
}
else if (num <= 2) {
return 1;
}
int[][] number = { { 1, 1 }, { 1, 0 } };
int[][] result = { { 1, 1 }, { 1, 0 } };
while (num > 0) {
if (num%2 == 1) result = MultiplyMatrix(result, number);
number = MultiplyMatrix(number, number);
num/= 2;
}
return result[1][1]*((n < 0) ? -1:1);
}
public static int[][] MultiplyMatrix(int[][] mat1, int[][] mat2) {
return new int[][] {
{ mat1[0][0]*mat2[0][0] + mat1[0][1]*mat2[1][0],
mat1[0][0]*mat2[0][1] + mat1[0][1]*mat2[1][1] },
{ mat1[1][0]*mat2[0][0] + mat1[1][1]*mat2[1][0],
mat1[1][0]*mat2[0][1] + mat1[1][1]*mat2[1][1] }
};
}
public static void main(String[] args) {
Scanner reader = new Scanner(System.in); // Reading from System.in
System.out.println("Enter a number: ");
int n = reader.nextInt();
System.out.println("\n" + Fibonacci(n));
}
}
什麼是使用'BigInteger'問題? – Oleg
Idk如何實現它,或在這種特定情況下使用它。當我輸入100時,我應該得到354224848179261915075 而不是我得到-980107325 – ArkhamWarfare
用'BigInteger'和所有具有'Biginteger'方法調用的操作符替換所有'int'。 – Oleg