@[email protected] to [email protected] • 11 months agowhen is it best to use a recursive function vs a for loopmessage-square47fedilinkarrow-up134arrow-down13
arrow-up131arrow-down1message-squarewhen is it best to use a recursive function vs a for loop@[email protected] to [email protected] • 11 months agomessage-square47fedilink
minus-square@[email protected]linkfedilink8•11 months agoIMHO almost never. Except for tree traversal, maybe.
minus-square@[email protected]linkfedilink2•11 months 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.