About 123,000 results
Open links in new tab
  1. 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.

  2. Introduction to Recursion - GeeksforGeeks

    Oct 25, 2025 · 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 step …

  3. What Is a Recursive Sequence? Definition and Examples

    A recursive sequence is a sequence of numbers where each term is defined using one or more previous terms. Instead of a single formula that calculates any term directly, a recursive sequence …

  4. RECURSIVE Definition & Meaning - Merriam-Webster

    The meaning of RECURSIVE is of, relating to, or involving recursion. How to use recursive in a sentence.

  5. Recursion (article) | Recursive algorithms | Khan Academy

    Both place emphasis on breaking the problem down into smaller parts and solving the problem one step at a time, but the key difference is that recursive functions are usually partly defined by themselves.

  6. Recursion and recursive thinking - opencs.aalto.fi

    Recursive (or inductive) thinking is characterized as follows: We begin by defining a function that takes an input x. By assuming that the function being defined works correctly for strictly smaller inputs than …

  7. Recursion - Glossary | MDN

    Dec 22, 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) or …

  8. Mathwords: Recursion

    A recursive definition consists of two parts: one or more base cases that provide explicit starting values, and a recursive rule (or recurrence relation) that expresses each subsequent term as a function of …

  9. What Is Recursive? - Computer Hope

    Dec 31, 2022 · In computer programming, the term recursive describes a function or method that repeatedly calculates a smaller part of itself to arrive at the final result. It is similar to iteration, …

  10. Recursion in Python – A Practical Introduction for Beginners

    1 day ago · Recursion is when a function solves a problem by calling itself. It sounds odd at first — why would a function call itself? — but once it clicks, you'll find it's often the most natural way to express …