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

    Jun 10, 2026 · The meaning of RECURSIVE is of, relating to, or involving recursion. How to use recursive in a sentence.

  2. RECURSIVELY | English meaning - Cambridge Dictionary

    A subroutine can be coded so that it may call itself recursively in order to perform its task. If there are unsolved problems, the task is recursively carried out to find solutions.

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

  4. Introduction to Recursion - GeeksforGeeks

    Jun 13, 2026 · 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 …

  5. Recursion (computer science) - Wikipedia

    By recursively referring to expressions in the second and third lines, the grammar permits arbitrarily complicated arithmetic expressions such as (5 * ((3 * 6) + 8)), with more than one product or sum …

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

  7. Introduction to Recursion -

    For all the letters in the string, take one letter and add it to the current permutation, and recursively continue the process, decreasing the characters left by one.

  8. Understanding Recursion: When and How to Use It

    In this comprehensive guide, we’ll dive deep into the world of recursion, exploring what it is, when to use it, and how to implement it effectively in your code. What is Recursion? Recursion is a programming …

  9. What Is a Recursive Process? Definition and Examples

    Mar 14, 2026 · The idea is to take a large problem, split it into smaller subproblems of the same type, solve each one independently (often recursively), and then combine the results.

  10. Recursive — Definition, Formula & Examples

    Recursive means defining each term in a sequence by referring back to one or more previous terms. Instead of a direct formula for the n n nth term, a recursive rule tells you how to get the next term …