Content deleted Content added
Citation bot (talk | contribs) Alter: pages. Formatted dashes. | Use this bot. Report bugs. | Suggested by Abductive | #UCB_webform 2497/3849 |
→Recursion versus iteration: I just changed a misspelled period(.) to a comma(,) Tag: Reverted |
||
Line 268:
==Recursion versus iteration==
Recursion and [[iteration]] are equally expressive: recursion can be replaced by iteration with an explicit [[call stack]], while iteration can be replaced with [[tail call|tail recursion]]
Compare the templates to compute x<sub>n</sub> defined by x<sub>n</sub> = f(n, x<sub>n-1</sub>) from x<sub>base</sub>:
|