I am working on a project for my assembly language programming class and the prof has us writing a program to calculate fibonacci numbers but we need to make only 1 recursive call. Here is my ...
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.