Question: Write an iterative C++ function that inputs a nonnegative integer n and returns the nth Fibonacci number. Write a recursive C++ function that inputs a

 Write an iterative C++ function that inputs a nonnegative integer n

Write an iterative C++ function that inputs a nonnegative integer n and returns the nth Fibonacci number. Write a recursive C++ function that inputs a nonnegative integer n and returns the nth Fibonacci number. Compare the number of operations and time taken to compute Fibonacci numbers recursively versus that needed to compute them iteratively. Use the above functions to write a C++ program for solving each of the following computational problems. I. Find the exact value of f_1000, f_500, and f_1000, where fn is the nth Fibonacci number. What are times taken to find out the exact values? II. Find the smallest Fibonacci number (1) greater than 1,000,000, and (2) greater than 1,000,000,000. III. Find as many prime Fibonacci numbers as you can. It is unknown whether there are infinitely many of these. Find out the times taken to find first 10, 20, 30, 40...up to 200 and draw a graph and see the pattern

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!