About 53 results
Open links in new tab
  1. How exactly does recursion work in x86 assembly?

    Oct 26, 2025 · In C for example, recursion can be done with a simple return command but in assembly I feel like there's a lot more things going on, especially with pushing and popping registers on stack. I …

  2. Understanding how recursive functions work - Stack Overflow

    Sep 5, 2014 · Note that in the recursion, the computer does not only have to compute the recursive call, it also has to remember what to do with the value returned by the recursive call.

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

    There are a number of good explanations of recursion in this thread, this answer is about why you shouldn't use it in most languages.* In the majority of major imperative language implementations …

  4. How does recursion work in C? - Stack Overflow

    0 Recursion works on stack i.e, first in last out. Recursion is a process of calling itself with different parameters until a base condition is achieved. Stack overflow occurs when too many recursive calls …

  5. sql server - How does SQL recursion actually work? - Database ...

    Jan 11, 2019 · Namely, that (1) all the components are created up to the recursion limit or null set, and then (2) all the components are unioned together. This is how I understand SQL recursion to actually …

  6. recursion - How does the fibonacci recursive function "work"? - Stack ...

    I'm new to Javascript and was reading up on it, when I came to a chapter that described function recursion. It used an example function to find the nth number of the Fibonacci sequence. The code ...

  7. How does Recursion actually work in Java? - Stack Overflow

    Mar 14, 2019 · I'm just new to this Recursion and I know at least that it is a technique by which a method calls itself during execution but I am quite confused on how it actually works. From the book at school,

  8. c - How exactly does tail recursion work? - Stack Overflow

    Mar 20, 2013 · I almost understand how tail recursion works and the difference between it and a normal recursion. I only don't understand why it doesn't require stack to remember its return address. // tail …

  9. java - How does recursion work? - Stack Overflow

    Please explain how recursion works, in the simplest way you can.

  10. java - How does loop in recursion work? - Stack Overflow

    Jan 29, 2018 · Conditions for applying recursion to a problem: There are two preconditions for using recursive functions to solving a specific problem: There must be a base condition for the problem, …