Can you explain the concept of Recursion? - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T20:16:07Z http://stackoverflow.com/feeds/question/450161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion 5 Can you explain the concept of Recursion? [closed] John Nolan 2009-01-16T11:39:49Z 2009-01-16T13:07:04Z <p>If you had to explain recursion to a novice how would you do it?</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450163#450163 37 Answer by John Nolan for Can you explain the concept of Recursion? John Nolan 2009-01-16T11:40:42Z 2009-01-16T12:15:09Z <p>If you don't get recursion, you should see this <a href="http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion">question</a> for the answer</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450166#450166 5 Answer by Yuval A for Can you explain the concept of Recursion? Yuval A 2009-01-16T11:42:53Z 2009-01-16T11:42:53Z <p>However, the recursion must have an end, otherwise it's an infinite loop.</p> <p>So according to <a href="http://en.wikipedia.org/wiki/Recursion" rel="nofollow">wikipedia</a>:</p> <blockquote> <p>Recursion, in mathematics and computer science, is a method of defining functions in which the function being defined is applied within its own definition. The term is also used more generally to describe a process of repeating objects in a self-similar way. For instance, when the surfaces of two mirrors are almost parallel with each other the nested images that occur are a form of recursion.</p> </blockquote> <p>A simple examle, taken from said article, can be of the factorial function, which in C would be defined like so:</p> <pre><code> unsigned int factorial(unsigned int n) { if (n &lt;= 1) return 1; return n * factorial(n-1); } </code></pre> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450170#450170 12 Answer by Pev for Can you explain the concept of Recursion? Pev 2009-01-16T11:45:11Z 2009-01-16T11:45:11Z <p>Recursion demonstrated as only <a href="http://www.post-literate.com/gerpunx/archives/2005/01/prepare_to_lose_your_mind.php" rel="nofollow">David Hasselhoff</a> can.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450171#450171 0 Answer by Drejc for Can you explain the concept of Recursion? Drejc 2009-01-16T11:45:36Z 2009-01-16T11:45:36Z <p><a href="http://www.flickr.com/photos/nitot/2290128532/" rel="nofollow">http://www.flickr.com/photos/nitot/2290128532/</a></p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450172#450172 5 Answer by Bombe for Can you explain the concept of Recursion? Bombe 2009-01-16T11:45:41Z 2009-01-16T11:45:41Z <p>Also, to understand recursion you have to understand recursion.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450187#450187 1 Answer by annakata for Can you explain the concept of Recursion? annakata 2009-01-16T11:51:53Z 2009-01-16T11:51:53Z <p>Now you're thinking with <a href="http://www.pages.drexel.edu/~pam39/JoeUser/SS/portal3.jpg" rel="nofollow">portals</a></p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450217#450217 0 Answer by tvanfosson for Can you explain the concept of Recursion? tvanfosson 2009-01-16T12:05:23Z 2009-01-16T12:05:23Z <p><a href="http://en.wikipedia.org/wiki/Matrushka" rel="nofollow">Matryoshka dolls</a>.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450271#450271 0 Answer by Bruno Ranschaert for Can you explain the concept of Recursion? Bruno Ranschaert 2009-01-16T12:22:24Z 2009-01-16T12:22:24Z <p>In fact, in mathematical systems recursion is often stated as an "axiom". So I am not sure if you even can define recursion in a rigorous way.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450283#450283 22 Answer by weazl for Can you explain the concept of Recursion? weazl 2009-01-16T12:30:27Z 2009-01-16T12:30:27Z <p>I read this one once, kind of liked it..</p> <blockquote> <p>A child couldn't sleep, so her mother told her a story about a little frog,<br /> &nbsp;&nbsp;&nbsp;&nbsp;who couldn't sleep, so the frog's mother told her a story about a little bear,<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;who couldn't sleep, so the bear's mother told her a story about a little weasel...<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;who fell asleep.<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...and the little bear fell asleep;<br /> &nbsp;&nbsp;&nbsp;&nbsp;...and the little frog fell asleep;<br /> ...and the child fell asleep.</p> </blockquote> <p><a href="http://everything2.com/title/Recursion" rel="nofollow">Source</a></p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450288#450288 0 Answer by vatine for Can you explain the concept of Recursion? vatine 2009-01-16T12:32:34Z 2009-01-16T12:32:34Z <p>Explain recursion in terms of conquer-and-divide.</p> <p>If the person has not understood recursion, explain recursion, then come back to the current explanation.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450289#450289 0 Answer by Sulaiman for Can you explain the concept of Recursion? Sulaiman 2009-01-16T12:32:59Z 2009-01-16T12:32:59Z <p>Recursion is similar to loops : it has a start value an a target :</p> <p>lets see this </p> <pre><code> function int sum (int i, int n){ if (i = 100) return n + 100; else return sum(i+1,n+i); } </code></pre> <p>as you can see the code above is c++ simple code of a summing function from 0 to 100 you can call it by </p> <pre><code>sum(0,0); </code></pre> <p>there are basic rules when you write a recursive function usually you need to write a condition to know when to stop:</p> <pre><code> if (i = 100) return n + 100; </code></pre> <p>also you need to let the function call itself while carrying the data that were calculated for each cycle. </p> <pre><code>return sum(i+1,n+i); </code></pre> <p>here is an example of calculating factory of an n .</p> <pre><code> function int fact(int i, int n){ if (i = 1) return n; else return fact(i-1,n*i); } </code></pre> <p>you can call it like this </p> <pre><code>fact(6,1); // = 720 fact(4,1); // = 24 </code></pre> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450291#450291 0 Answer by Fabian Steeg for Can you explain the concept of Recursion? Fabian Steeg 2009-01-16T12:33:38Z 2009-01-16T12:33:38Z <p>To explain recursion in programming, I'd keep it short and concrete, something like: Recursion in general means self-reference. The two common recursive things in programming are:</p> <ul> <li>Recursive methods, i.e. methods that call themself inside the method body</li> <li>Recursive data structures, e.g. a class that contains an instance of itself</li> </ul> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450301#450301 0 Answer by Aaron C for Can you explain the concept of Recursion? Aaron C 2009-01-16T12:36:59Z 2009-01-16T12:36:59Z <p>Recursion: See recursion</p> <p>Can't remember exactly where I saw that.</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450303#450303 0 Answer by unknown (google) for Can you explain the concept of Recursion? unknown (google) 2009-01-16T12:37:41Z 2009-01-16T12:37:41Z <p>It might lead you to stackoverflowexception :)</p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450340#450340 0 Answer by transitive for Can you explain the concept of Recursion? transitive 2009-01-16T12:54:36Z 2009-01-16T13:00:56Z <pre><code>function int sum (int i, int n){ if (i = 100) return n + 100; else return sum(i+1,n+i); } </code></pre> <p>reasonable enough for demonstration of recursion, however, this is also an example of brute force computing in the place of something that can be solved into a general formula with relatively simple mathematical methods. </p> <p>i'm sure you're already well aware of this, and i'm just being pedantic, but the point still stands. the formula for a sum of consecutive integers is n(n+1)/2. </p> <p>the proof of that formula is itself an excellent demonstration of the idea of recursion. </p> <pre><code> S(n) = n*(n+1)/2 Prove by induction on n: </code></pre> <p>1) n=1 S(1) = 1 = 1*(1+1)/2 true for n = 1 </p> <p>2) Suppose true for n, where</p> <p>S(n) = n*(n+1)/2 show that it's true</p> <p>for n+1, i.e. show that S(n+1) = (n+1)<em>(n=2)/2 Now S(n+1) = S(n) + n+1 = n</em>(n+1)/2 + n+1 = (n+1)<em>( n/2 + 1) = (n+1)</em>(n + 2)/2 . . . done</p> <pre><code> (proof as written by vlee1225 from Yahoo Answers) </code></pre> <p>thats a mathematical induction proof, and you can see the recursion demonstrated in step 2. the method asserts that the next term is defined in terms of adding something to the previous term. the rest of it is just algebra. </p> http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450360#450360 0 Answer by Edu Lorenzo for Can you explain the concept of Recursion? Edu Lorenzo 2009-01-16T13:07:04Z 2009-01-16T13:07:04Z <p>"To understand recursion, you must understand recursion" and "Recursion : see Recursion"</p> <p>These two probably are the shortest representations of recursion I have ever seen and I love them both.</p> <p>Recursion, simply put (and in programming) is a function that calls itself. This will result in a loop within a loop with an "escape hatch" or condition of sorts.</p> <p>The last time I used a recursive search was to find all checked radio/option buttons inside a page but I was not to know if the control I am looking for is a child of another control. So the logic went as follows:</p> <ol> <li>Select a parent/root control</li> <li>Evaluate if this parent has child controls </li> <li>Check if the child control is a radio button. Yes = check if ticked then exit the loop. No = treat this control as the parent control then go to step 1</li> </ol> <p>And the first time I did recursion was with the old Towers of Hanoi assignment (ahhh.. the good old days)</p> <p>Public Sub SolveHanoi(ByVal lNumMoves As Long, ByVal oBegin As cStack, ByVal oEnd As cStack, ByVal oTemp As cStack) If lNumMoves > 0 Then SolveHanoi lNumMoves - 1, oBegin, oTemp, oEnd oEnd.Push oBegin.Pop RaiseEvent StacksChanged(oBegin, oEnd) 'Debug.Print "Moved " &amp; oEnd.Top &amp; " from " &amp; oBegin.Name &amp; " to " &amp; oEnd.Name SolveHanoi lNumMoves - 1, oTemp, oEnd, oBegin End If End Sub</p> <p>And oh! yeah! a recursive search, when done incorrectly.. leads to a Stack Overflow (I just had to say it)</p>