About 249,000 results
Open links in new tab
  1. Recursion - Wikipedia

    Recursion is used in a variety of disciplines ranging from linguistics to logic. The most common application of recursion is in mathematics and computer science, where a function being …

  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

    May 20, 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 …

  4. What is recursion and when should I use it? - Stack Overflow

    A recursive function is a function that contains a call to itself. A recursive struct is a struct that contains an instance of itself. You can combine the two as a recursive class.

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

  6. Recursion - Glossary | MDN - MDN Web Docs

    May 23, 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 …

  7. How Recursion Works — Explained with Flowcharts and a Video

    Aug 22, 2017 · There should always be two parts to a recursive function: the recursive case and the base case. The recursive case is when the function calls itself. The base case is when the …

  8. A Guide To Recursion With Examples - The Valuable Dev

    Nov 27, 2020 · A recursive solution to a problem must have two steps: the base case (the smallest problem to solve) and the recursive steps (applying the same solution over and over …

  9. Recursion (computer science) - Wikipedia

    In computer science, recursion is a method of solving a computational problem where the solution depends on solutions to smaller instances of the same problem. [1][2] Recursion solves such …

  10. Recursive Definition (Illustrated Mathematics Dictionary) - Math is …

    Illustrated definition of Recursive: Applying a rule or formula to its own result, again and again. Example: start with 1 and apply double recursively:...