Recursive Fibonacci slow? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 12

Recursive Fibonacci slow?

In the latest 'question' of Marcel, he shows that a Fibonacci, using a recursive function times out, where using a loop is very quick. does anybody know WHY this is the case? does calling a method comes with an overhead, or is the compiler just able to optimize a loop better than a recursive function? https://www.sololearn.com/discuss/919091/?ref=app

11th Dec 2017, 11:58 PM
ReneDaanen
4 Answers
+ 7
Well for loops are more efficient than multiple returns In a for loop: # # # ... # in a recursive function: #,break #,break #,break, ... #,break Where # are the functions being executed.
12th Dec 2017, 12:05 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 4
I've spent some time on timing Python Fibonacci calculations just to see the order of difference. See the code first. You can play with floating point formula, iteration , recursion(optimized) and see timing. https://code.sololearn.com/cQ82uZAUYiwu/?ref=app
12th Dec 2017, 7:59 AM
Andrey Smirnov
Andrey Smirnov - avatar
+ 3
If you can make you code without recursion-you should do it. It will take time to call the function and it will take memory (in the stack) to provide all functions parameters. If recursion calling will be very deep it even can overload memory and crash the program.
12th Dec 2017, 6:42 PM
Nick Sh
Nick Sh - avatar
+ 2
hmmm, that's sounds very logical... thanks for this clear explanation.
12th Dec 2017, 6:08 AM
ReneDaanen