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

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

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

  3. Recursive Self-Improvement is the Human Skill We Need in the AI Age …

    1 day ago · While there have been many sober warnings about AI and recursive self-improvement, Arianna Huffington argues that it is a fundamentally human skill.

  4. Recursion - Wikipedia

    A recursive step — a set of rules that reduces all successive cases toward the base case. For example, the following is a recursive definition of a person's ancestor. One's ancestor is either: One's parent …

  5. Introduction to Recursion - GeeksforGeeks

    Jun 13, 2026 · Recursive programs typically have more space requirements and also more time to maintain the recursion call stack. Recursion can make the code more difficult to understand and …

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

  7. Recursive Definition (Illustrated Mathematics Dictionary)

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

  8. Recursion (article) | Recursive algorithms | Khan Academy

    Recursion has many, many applications. In this module, we'll see how to use recursion to compute the factorial function, to determine whether a word is a palindrome, to compute powers of a number, to …

  9. Recursive — Definition, Formula & Examples

    Recursive thinking is central to computer science algorithms like sorting and searching, where problems are broken into smaller copies of themselves. In precalculus and discrete math courses, you will …

  10. Recursion in Programming: What is it? - Codecademy

    Dec 28, 2023 · Recursion is a method of solving a problem using smaller instances of the same problem. In programming, it is when a function calls itself until it is solved.