Chapter 11: Problem 25
The recursive computation of Fibonacci numbers can be specded up significantly by keeping track of the values that have already been computed. Provide an implementation of the fib function that uses this strategy. Whenever you return a new valuc, also store it in an auxiliary list. However, before cmbarking on a computation, consult the list to find whether the result has already been computed. Compare the running time of your improved implementation with that of the original recursive implementation and the loop implementation.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.