About 245,000 results
Open links in new tab
  1. RECURSIVE Definition & Meaning - Merriam-Webster

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

  2. Recursion - Wikipedia

    Recursion is the process a procedure goes through when one of the steps of the procedure involves invoking the procedure itself. A procedure that goes through recursion is said to be …

  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. RECURSIVE | English meaning - Cambridge Dictionary

    RECURSIVE definition: 1. involving doing or saying the same thing several times in order to produce a particular result…. Learn more.

  5. Recursion - Glossary | MDN

    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 …

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

    Aug 22, 2017 · A recursive function always has to say when to stop repeating itself. There should always be two parts to a recursive function: the recursive case and the base case.

  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. Recursion: Concepts, Design, and Analysis of Recursive Algorithms

    This webpage provides a comprehensive guide to recursion, including the concept of recursion, recursion vs. iteration, and the design and analysis of recursive algorithms. Learn about the …

  9. Recursive Functions - GeeksforGeeks

    May 27, 2024 · A recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is often used in programming to solve …

  10. Recursion – An Open Guide to Data Structures and Algorithms

    Recursion is a powerful tool for computation that often saves the programmer considerable work. As you will see, the benefit of recursion lies in its ability to simplify the code of algorithms, but …

  11. Some results have been removed