@jackpot@lemmy.ml to Programming@programming.dev • 1 year agowhen is it best to use a recursive function vs a for loopmessage-square52fedilinkarrow-up133
arrow-up133message-squarewhen is it best to use a recursive function vs a for loop@jackpot@lemmy.ml to Programming@programming.dev • 1 year agomessage-square52fedilink
minus-square@bizdelnick@lemmy.mllinkfedilink10•1 year agoIMHO almost never. Except for tree traversal, maybe.
minus-square@livingcoder@programming.devlinkfedilink2•1 year agoI would agree. Only if the performance is extremely similar but the readability (for some reason) is significantly better for the recursive solution would I choose that.
IMHO almost never. Except for tree traversal, maybe.
I would agree. Only if the performance is extremely similar but the readability (for some reason) is significantly better for the recursive solution would I choose that.