About 146,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

    2 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 step toward …

  3. RECURSIVE Definition & Meaning - Merriam-Webster

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

  4. Recursive Sequence — Definition, Formula & Examples

    A recursive sequence is a sequence where each term is defined by applying a rule to one or more of the terms that came before it. You need at least one starting value (called an initial condition) plus the …

  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 - 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 a …

  7. Mastering Recursive Functions: Definition, Induction, and Patterns

    Recursive functions allow us to solve complex problems by defining them in terms of simpler versions of themselves. This lesson covers how to define these functions, check their values using induction, …

  8. Recursion for Beginners: A Beginners Guide To Understanding Recursive ...

    Mar 22, 2025 · Recursion is a programming technique where a function calls itself to break a problem down into progressively smaller subproblems until it reaches a simple case that can be solved directly.

  9. Understanding Recursion: When and How to Use It

    In this comprehensive guide, we’ll dive deep into the world of recursion, exploring what it is, when to use it, and how to implement it effectively in your code. What is Recursion? Recursion is a programming …

  10. 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, but …