About 17,400 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. RECURSIVE Definition & Meaning - Merriam-Webster

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

  3. 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 toward …

  4. 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.

  5. Reading 11: Recursive Data Types - MIT

    Before we introduce recursive data types — which have a recursive structure of both data and computation — take a minute to review what you know about recursive functions.

  6. Describing the Pattern and Writing a Recursive Rule for a Sequence

    Mar 1, 2026 · A recursive rule for a sequence is a formula which tells us how to progress from one term to the next in a sequence. Generally, the variable n is used to represent the term number.

  7. Recursive Queries Using Common Table Expressions - SQL Server

    Nov 18, 2025 · A recursive CTE is one in which an initial CTE is repeatedly executed to return subsets of data until the complete result set is obtained. A query is referred to as a recursive query when it …

  8. RECURSIVE Definition & Meaning | Dictionary.com

    RECURSIVE definition: pertaining to or using a rule or procedure that can be applied repeatedly. See examples of recursive used in a sentence.

  9. How Does Recursion Work? Explained with Code Examples

    Jul 25, 2024 · Recursion involves breaking down a problem into smaller pieces to the point that it cannot be further broken down. You solve the small pieces and put them together to solve the overall …

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