|
|
|
|
|
by CyberDildonics
284 days ago
|
|
Recursion just ends up using the call stack as a stack data structure. I would much rather use an actual stack data structure, that will be easier to debug and have better locality since there isn't an entire call frame overhead to put one value into the stack. |
|