-
Notifications
You must be signed in to change notification settings - Fork 19.6k
/
Copy pathFibonacciLoop.java
41 lines (33 loc) · 1.1 KB
/
FibonacciLoop.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.thealgorithms.maths;
import java.math.BigInteger;
/**
* This class provides methods for calculating Fibonacci numbers using BigInteger for large values of 'n'.
*/
public final class FibonacciLoop {
private FibonacciLoop() {
// Private constructor to prevent instantiation of this utility class.
}
/**
* Calculates the nth Fibonacci number.
*
* @param n The index of the Fibonacci number to calculate.
* @return The nth Fibonacci number as a BigInteger.
* @throws IllegalArgumentException if the input 'n' is a negative integer.
*/
public static BigInteger compute(final int n) {
if (n < 0) {
throw new IllegalArgumentException("Input 'n' must be a non-negative integer.");
}
if (n <= 1) {
return BigInteger.valueOf(n);
}
BigInteger prev = BigInteger.ZERO;
BigInteger current = BigInteger.ONE;
for (int i = 2; i <= n; i++) {
BigInteger next = prev.add(current);
prev = current;
current = next;
}
return current;
}
}