<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Is Recursion in Python</title><link>http://www.bing.com:80/search?q=Is+Recursion+in+Python</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Is Recursion in Python</title><link>http://www.bing.com:80/search?q=Is+Recursion+in+Python</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>What is recursion and when should I use it? - Stack Overflow</title><link>https://stackoverflow.com/questions/3021/what-is-recursion-and-when-should-i-use-it</link><description>Recursion is a tree, with branches and leaves, called parents and children respectively. When you use a recursion algorithm, you more or less consciously are building a tree from the data.</description><pubDate>Fri, 24 Apr 2026 04:15:00 GMT</pubDate></item><item><title>Recursion vs loops - Stack Overflow</title><link>https://stackoverflow.com/questions/660337/recursion-vs-loops</link><description>Recursion is good for proto-typing a function and/or writing a base, but after you know the code works and you go back to it during the optimization phase, try to replace it with a loop. Again, this is all opinionated. Go with what works best for you.</description><pubDate>Thu, 23 Apr 2026 00:34:00 GMT</pubDate></item><item><title>list - Basics of recursion in Python - Stack Overflow</title><link>https://stackoverflow.com/questions/30214531/basics-of-recursion-in-python</link><description>Tail Call Recursion Once you understand how the above recursion works, you can try to make it a little bit better. Now, to find the actual result, we are depending on the value of the previous function also. The return statement cannot immediately return the value till the recursive call returns a result. We can avoid this by, passing the current to the function parameter, like this</description><pubDate>Wed, 22 Apr 2026 16:56:00 GMT</pubDate></item><item><title>What are the advantages and disadvantages of recursion?</title><link>https://stackoverflow.com/questions/5250733/what-are-the-advantages-and-disadvantages-of-recursion</link><description>With respect to using recursion over non-recursive methods in sorting algorithms or, for that matter, any algorithm what are its pros and cons?</description><pubDate>Thu, 23 Apr 2026 19:33:00 GMT</pubDate></item><item><title>algorithm - recursion versus iteration - Stack Overflow</title><link>https://stackoverflow.com/questions/15688019/recursion-versus-iteration</link><description>Recursion is usually much slower because all function calls must be stored in a stack to allow the return back to the caller functions. In many cases, memory has to be allocated and copied to implement scope isolation. Some optimizations, like tail call optimization, make recursions faster but aren't always possible, and aren't implemented in all languages. The main reasons to use recursion ...</description><pubDate>Sun, 19 Apr 2026 10:33:00 GMT</pubDate></item><item><title>Real-world examples of recursion - Stack Overflow</title><link>https://stackoverflow.com/questions/105838/real-world-examples-of-recursion</link><description>There is no recursion in the real-world. Recursion is a mathematical abstraction. You can model lots of things using recursion. In that sense, Fibonacci is absolutely real-world, as there are quite some real-world problems that can be modeled this way. If you think that Fibonacci is not real-world, than I would claim that all other examples are abstractions as well, not real-world examples.</description><pubDate>Fri, 24 Apr 2026 02:28:00 GMT</pubDate></item><item><title>Understanding how recursive functions work - Stack Overflow</title><link>https://stackoverflow.com/questions/25676961/understanding-how-recursive-functions-work</link><description>6 Recursion. In Computer Science recursion is covered in depth under the topic of Finite Automata. In its simplest form it is a self reference. For example, saying that "my car is a car" is a recursive statement. The problem is that the statement is an infinite recursion in that it will never end.</description><pubDate>Thu, 02 Apr 2026 15:11:00 GMT</pubDate></item><item><title>performance - Recursion or Iteration? - Stack Overflow</title><link>https://stackoverflow.com/questions/72209/recursion-or-iteration</link><description>Recursion is more simple (and thus - more fundamental) than any possible definition of an iteration. You can define a Turing-complete system with only a pair of combinators (yes, even a recursion itself is a derivative notion in such a system).</description><pubDate>Fri, 24 Apr 2026 00:48:00 GMT</pubDate></item><item><title>recursion - Determining complexity for recursive functions (Big O ...</title><link>https://stackoverflow.com/questions/13467674/determining-complexity-for-recursive-functions-big-o-notation</link><description>I have a Computer Science Midterm tomorrow and I need help determining the complexity of these recursive functions. I know how to solve simple cases, but I am still trying to learn how to solve these</description><pubDate>Wed, 22 Apr 2026 23:16:00 GMT</pubDate></item><item><title>Convert recursion to iteration - Stack Overflow</title><link>https://stackoverflow.com/questions/159590/convert-recursion-to-iteration</link><description>Well, in general, recursion can be mimicked as iteration by simply using a storage variable. Note that recursion and iteration are generally equivalent; one can almost always be converted to the other. A tail-recursive function is very easily converted to an iterative one. Just make the accumulator variable a local one, and iterate instead of ...</description><pubDate>Mon, 06 Apr 2026 15:06:00 GMT</pubDate></item></channel></rss>