Comment on On calculating Fibonacci numbers in CparentComments−aeon1013yJust a note, In the iterative solution, by changing the i (loop variable) from an int to an long int the times by both iterative and recursive are almost equal. Here are the new results[Recursive - 7921 ms], [Iteratiive - 8078 ms]So the difference is negligible.
Comments
Just a note, In the iterative solution, by changing the i (loop variable) from an int to an long int the times by both iterative and recursive are almost equal. Here are the new results
[Recursive - 7921 ms], [Iteratiive - 8078 ms]
So the difference is negligible.