jackpot@lemmy.mlBanned to Programming@programming.dev · 2 years agowhen is it best to use a recursive function vs a for loopmessage-squaremessage-square49linkfedilinkarrow-up134arrow-down13
arrow-up131arrow-down1message-squarewhen is it best to use a recursive function vs a for loopjackpot@lemmy.mlBanned to Programming@programming.dev · 2 years agomessage-square49linkfedilink
minus-squarefiah@discuss.tchncs.delinkfedilinkarrow-up3·2 years 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