It's pretty common to see the factorial algorithm used as an example of how to reduce the overhead of recursion, but I would like to know how you could do this with the recursive fibonacci algorithm.
Understand the concepts of factorial, Fibonacci sequences, and recursion. Explain how recursion is used to solve factorial and Fibonacci problems. Write and trace recursive algorithms for factorial ...