jackpot@lemmy.ml to Programming@programming.dev · 11 months agowhen is it best to use a recursive function vs a for loopmessage-squaremessage-square52fedilinkarrow-up134arrow-down13
arrow-up131arrow-down1message-squarewhen is it best to use a recursive function vs a for loopjackpot@lemmy.ml to Programming@programming.dev · 11 months agomessage-square52fedilink
minus-squarefiah@discuss.tchncs.delinkfedilinkarrow-up3·11 months ago If you are compelled to make a recursive algorithm iterative, consider using an explicit stack. yep, did that once to solve a specific problem, worked fine and if I recall correctly I could do it without making a total mess of my code
yep, did that once to solve a specific problem, worked fine and if I recall correctly I could do it without making a total mess of my code