
Recursion - Wikipedia
A recursive step — a set of rules that reduces all successive cases toward the base case. For example, the following is a recursive definition of a person's ancestor.
RECURSIVE Definition & Meaning - Merriam-Webster
Dec 6, 2012 · The meaning of RECURSIVE is of, relating to, or involving recursion. How to use recursive in a sentence.
Introduction to Recursion - GeeksforGeeks
6 days ago · The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one …
Recursion - Glossary | MDN
Jul 11, 2025 · The act of a function calling itself, recursion is used to solve problems that contain smaller sub-problems. A recursive function can receive two inputs: a base case (ends …
Recursion - Art of Problem Solving
In computer science, recursion also refers to the technique of having a function repeatedly call itself. The concept is very similar to recursively defined mathematical functions, but can also …
Recursive - definition of recursive by The Free Dictionary
Define recursive. recursive synonyms, recursive pronunciation, recursive translation, English dictionary definition of recursive. adj. 1. Of or relating to a repeating process whose output at …
What does Recursive mean? - Definitions.net
Recursive refers to a process or function that is defined in terms of itself, often with some initial condition. It means that something is calling or referring back to itself in its definition or …
Recursive Definition (Illustrated Mathematics Dictionary)
Illustrated definition of Recursive: Applying a rule or formula to its own result, again and again. Example: start with 1 and apply double recursively:...
Recursive Functions - GeeksforGeeks
6 days ago · A recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is often used in programming to solve problems that can …
RECURSION Definition & Meaning - Merriam-Webster
: the determination of a succession of elements (such as numbers or functions) by operation on one or more preceding elements according to a rule or formula involving a finite number of steps.