About 252,000 results
Open links in new tab
  1. 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 'recursive'. [3] …

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

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

  4. 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 problems that can be …

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

    A recursive statement is one in which you define the process of what to do next as a combination of the inputs and what you have already done. For example, take factorial: factorial(6) = 6*5*4*3*2*1 …

  6. Recursion - Art of Problem Solving

    Recursion is a method of defining something (usually a sequence or function) in terms of previously defined values. The most famous example of a recursive definition is that of the Fibonacci …

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

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

  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 of recursive by The Free Dictionary

    Define recursive. recursive synonyms, recursive pronunciation, recursive translation, English dictionary definition of recursive. adj. 1. Of or relating to a repeating process whose output at …