About 485,000 results
Open links in new tab
  1. Recursive definition - Wikipedia

    In mathematics and computer science, a recursive definition, or inductive definition, is used to define the elements in a set in terms of other elements in the set (Aczel 1977:740ff).

  2. What is Recursion? - GeeksforGeeks

    Jul 23, 2025 · A recursive function must have a base case or stopping criteria to avoid infinite recursion. Recursion involves calling the same function within itself, which leads to a call stack.

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

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

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

  6. Recursive Algorithm/ Recursion Algorithm Explained with Examples

    Feb 15, 2025 · Learn about the recursive algorithm, their definition, and how they work. Discover how recursion simplifies complex problems with examples.

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

  8. Understanding Recursion: A Comprehensive Guide for Programmers

    Oct 5, 2024 · From basic concepts to advanced techniques, this post covers everything a programmer needs to know about recursive algorithms. Learn about base cases, recursive …

  9. Recursion Demystified: A Comprehensive Guide to Understanding …

    Recursion is a fundamental concept in computer science and programming that often challenges beginners and experienced developers alike. In this comprehensive guide, we’ll dive deep into …

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