About 75,800 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 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. 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 …

  5. Understanding Recursion: When and How to Use It

    In some recursive algorithms, you might end up calculating the same subproblems multiple times. Use techniques like memoization to store and reuse results of subproblems.

  6. Mastering recursive programming - IBM Developer

    This article introduces the concept of recursion and tackles recursive programming patterns, examining how they can be used to write provably correct programs. Examples are in Scheme and C.

  7. Recursion in Programming: What is it? - Codecademy

    Dec 28, 2023 · A function has to call itself at least once to be recursive, but eventually, it has to return the value you are looking for — otherwise it’s useless and will probably also result in the program …

  8. How Does Recursion Work? Explained with Code Examples

    Jul 25, 2024 · Recursive Case: Minimum work we can do. In the above example, asking the person in front of you how many people are ahead of them is the least amount of work we can do.

  9. A Beginner‘s Complete Visual Guide to Understanding Recursion

    Dec 24, 2024 · Data structures like linked lists and trees have recursive references within their node definitions. Mastering recursive traversals of these data structures is key.

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