Topic
algorithmic technique in computer science of solving a problem by reducing it to a smaller instance of the same problem
Free account · your comment posts right after signup
Not who you're looking for? Others named recursion: process of repeating items in a self-similar way · 2004 novel by Tony Ballantyne · 2019 novel by Blake Crouch
In computer science, recursion is a method of solving a computational problem where the solution depends on solutions to smaller instances of the same problem. Recursion solves such recursive problems by using functions that call themselves from within their own code. The approach can be applied to many types of problems, and recursion is one of the central ideas of computer science.The power of recursion evidently lies in the possibility of defining an infinite set of objects by a finite statement. In the same manner, an infinite number of computations can be described by a finite recursive program, even if this program contains no explicit repetitions.
Read the full article →