Recursion

View Code

See also Tracing Recursion.

Recursion

Recursion
the process of defining something with iteself as the definition
Recursive Function
a function defined recursively by making a call to iteself
Delimiter
the condition that haults recursive calls of a function
Tail End Recursion
recursion has only lines of code created in the calls
Divide and Conquer
recursion in which the calls are spreading to multiple calls
Maze Searching
a problem in which a person has to find the exit of a maze which is easily solved with recursion
Fractals
a picture defined recursively
Towers of Hanoi
a common recursive example

See also Tracing Recursion.

Prev -- Back to Portal -- Next