Recursion: Difference between revisions

From CasGroup
Jump to navigationJump to search
Jfromm (talk | contribs)
Created page with "'''Recursion''' is the repeated application of a recursive procedure or definition. A recursive process is a self-similar process in which objects are defined in terms of other ..."
 
Jfromm (talk | contribs)
No edit summary
Line 4: Line 4:
in which objects are defined in terms of other  
in which objects are defined in terms of other  
objects of the same type.
objects of the same type.
 
[[Iteration|iteration]] is the analog of [[Recursion|recursion]].


== Links ==
== Links ==
Line 10: Line 10:
* MathWorld site for [http://mathworld.wolfram.com/Recursion.html Recursion]
* MathWorld site for [http://mathworld.wolfram.com/Recursion.html Recursion]
* Wikipedia site for [http://en.wikipedia.org/wiki/Recursion Recursion]
* Wikipedia site for [http://en.wikipedia.org/wiki/Recursion Recursion]
[[Category:Basic Principles]]

Revision as of 14:56, 1 February 2012

Recursion is the repeated application of a recursive procedure or definition. A recursive process is a self-similar process in which objects are defined in terms of other objects of the same type. iteration is the analog of recursion.

Links