Academia.eduAcademia.edu

Dynamic Recursion Pattern

2004

Abstract

Everybody knows what recursion is and how it should be implemented in a procedural language. The first analysis of recursion implementations is due Kent Beck [Beck92], but no formalization was given. The other work on an OOP implementation of the subject is due to Boby Wolf [Wolf97], but his work only deals with one aspect of the problem: Structural Recursion. Structural Recursion is a particular aspect of general recursion where the recursion is performed by a set of objects (a list or a tree, for example) that is already present in the computer memory. All the participating objects must exist previously the recursion starts. As opposite to Structural Recursion, Dynamic Recursion does not put such a strong requirement on the way the recursion is performed. This is done simply by delaying the creation of the recursive elements until they are actually needed, and thus, delaying the decision of finishing the recursion until its very end. Examples of recursion that can only be handled ...