Can you explain the concept of Recursion? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T20:16:07Zhttp://stackoverflow.com/feeds/question/450161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion5Can you explain the concept of Recursion? [closed]John Nolan2009-01-16T11:39:49Z2009-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#45016337Answer by John Nolan for Can you explain the concept of Recursion?John Nolan2009-01-16T11:40:42Z2009-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#4501665Answer by Yuval A for Can you explain the concept of Recursion?Yuval A2009-01-16T11:42:53Z2009-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 <= 1) return 1;
return n * factorial(n-1);
}
</code></pre>
http://stackoverflow.com/questions/450161/can-you-explain-the-concept-of-recursion/450170#45017012Answer by Pev for Can you explain the concept of Recursion?Pev2009-01-16T11:45:11Z2009-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#4501710Answer by Drejc for Can you explain the concept of Recursion?Drejc2009-01-16T11:45:36Z2009-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#4501725Answer by Bombe for Can you explain the concept of Recursion?Bombe2009-01-16T11:45:41Z2009-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#4501871Answer by annakata for Can you explain the concept of Recursion?annakata2009-01-16T11:51:53Z2009-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#4502170Answer by tvanfosson for Can you explain the concept of Recursion?tvanfosson2009-01-16T12:05:23Z2009-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#4502710Answer by Bruno Ranschaert for Can you explain the concept of Recursion?Bruno Ranschaert2009-01-16T12:22:24Z2009-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#45028322Answer by weazl for Can you explain the concept of Recursion?weazl2009-01-16T12:30:27Z2009-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 />
who couldn't
sleep, so the frog's mother told her a
story about a little bear,<br />
who
couldn't sleep, so the bear's mother
told her a story about a little
weasel...<br />
who
fell asleep.<br />
...and
the little bear fell asleep;<br />
...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#4502880Answer by vatine for Can you explain the concept of Recursion?vatine2009-01-16T12:32:34Z2009-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#4502890Answer by Sulaiman for Can you explain the concept of Recursion?Sulaiman2009-01-16T12:32:59Z2009-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#4502910Answer by Fabian Steeg for Can you explain the concept of Recursion?Fabian Steeg2009-01-16T12:33:38Z2009-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#4503010Answer by Aaron C for Can you explain the concept of Recursion?Aaron C2009-01-16T12:36:59Z2009-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#4503030Answer by unknown (google) for Can you explain the concept of Recursion?unknown (google)2009-01-16T12:37:41Z2009-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#4503400Answer by transitive for Can you explain the concept of Recursion?transitive2009-01-16T12:54:36Z2009-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#4503600Answer by Edu Lorenzo for Can you explain the concept of Recursion?Edu Lorenzo2009-01-16T13:07:04Z2009-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 " & oEnd.Top & " from " & oBegin.Name & " to " & 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>