(algorithmic technique)
Definition: An algorithmic technique where a function, in order to accomplish a task, calls itself with some part of the task.
Specialization (... is a kind of me.)
tail recursion, collective recursion.
See also iteration, divide and conquer, divide and marriage before conquest, recursive, recurrence relation.
Note:
Every recursive solution involves two major parts or cases, the second part having three components.
Depending on the problem, any of these may be trivial or complex.
Here are some exercises to help you learn recursion. Although recursion may not be the best way to write some of these functions, it is good practice.
See dynamic algorithms for an example of one trade-off between speed and clarity for a recursive vs. an iterative implementation. See the notes for towers of Hanoi, a puzzle that has another recursive and iterative solution. Bro. David Carlson's tutorial and code (C++) with examples for factorial, Fibonacci, quicksort, and merge sort.
If you have suggestions, corrections, or comments, please get in touch with Paul Black.
Entry modified 30 September 2013.
HTML page formatted Mon Feb 2 13:10:40 2015.
Cite this as:
Paul E. Black and Patrick Rodgers, "recursion", in
Dictionary of Algorithms and Data Structures [online], Vreda Pieterse and Paul E. Black, eds. 30 September 2013. (accessed TODAY)
Available from: http://www.nist.gov/dads/HTML/recursion.html