Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The first solution uses recursion and is the simplest. In pseudocode it is: int fibonacci ( int n ) if ( n = = 0
The first solution uses recursion and is the simplest. In pseudocode it is:
int fibonacciint n
ifn return
ifn return
return fibonaccin fibonaccin
Very simple. Too simple as we will find out. The second method uses dynamic programming to store the previous calculations rather than recalculating them. This one looks like:
int fibonacciint n
v v v
fori to i n
v v v
v v
v v
Objective: Implement both methods of solving the Fibonacci sequence into two separate classes that extend the Thread class. The threads will have some way to set n before the thread is started. In the run function, you will execute the algorithm and time how long it takes to get an answer. At the end, the thread will output the answer to the screen along with the number of milliseconds it took.
Hint: To find milliseconds just call System.currentTimeMillis; You want to capture this time BEFORE your thread starts searching for the answer then AFTER. What you output is the difference between those two variables. The timing may vary between runs, but with n you should see a pretty large difference.
Attached is an example of my output along with what the th number of the Fibonacci sequence is Note, it is fine if the dynamic algorithm takes ms as that means it took less than ms to complete microseconds likely If your timing is working correctly I would not expect the recursive solution to take less than ms
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