+ 1
What are the drawbacks of exponential complexity in recursive functions, especially on memory ?!!
3 Respuestas
+ 10
Well, the memory limit itself :)
Recursion is very memory-consuming as it stores all its iterations 'in-memory' and frees it only when (or if) it reaches the base case and is "unpacked" and evaluated.
Loops, on the other hand, store only the currently iterated value (provided that garbage collection is automatic or resolved somehow).
+ 9
Hmm...
Check out this thread below and let me know your thoughts ;)
Oh, before you do - imagine if your recursion does that a million times - when will the memory limit be reached? Pretty soon, I gues... In order to be able to return a step back, it has to remember *all* the previous steps (and so yoy can navigate back in my example). And still, when during the recursive loop, you don't get the final result until the very end.
"Unpacking" or "unfolding" is a state when the base case is reached and, if properly done, the computed, concrete value is established for that case. It then has to be taken into account for computations in all preceding recursion phases.
https://www.sololearn.com/discuss/307407/?ref=app
+ 1
you mean by the iterations in the recursion the recursive calls ?!
And what does it mean by unpacked and evaluated ?