Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java Why this recursive method does not work for big numbers? Currently, this method can find till the 45th Fibonacci number. How can I make
Java
Why this recursive method does not work for big numbers? Currently, this method can find till the 45th Fibonacci number. How can I make it work for example to find The 100th Fibonacci number or even bigger?
public static BigInteger Fibonacci(int n) { if (n == 0) // Base case return BigInteger.ZERO; else if (n == 1) // Base case return BigInteger.ONE; else return Fibonacci(n-1).add(Fibonacci(n-2)); }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started