If you had to explain recursion to a novice how would you do it?
|
2
|
|||||||||||||
|
closed as exact duplicate by Mehrdad Afshari, EnderMB, Marc Gravell♦, StingyJack Jan 16 at 13:06 |
|
|
"To understand recursion, you must understand recursion" and "Recursion : see Recursion" These two probably are the shortest representations of recursion I have ever seen and I love them both. 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. 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:
And the first time I did recursion was with the old Towers of Hanoi assignment (ahhh.. the good old days) 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 And oh! yeah! a recursive search, when done incorrectly.. leads to a Stack Overflow (I just had to say it) |
|||
|
|
|
|
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. 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. the proof of that formula is itself an excellent demonstration of the idea of recursion.
1) n=1 S(1) = 1 = 1*(1+1)/2 true for n = 1 2) Suppose true for n, where S(n) = n*(n+1)/2 show that it's true for n+1, i.e. show that S(n+1) = (n+1)(n=2)/2 Now S(n+1) = S(n) + n+1 = n(n+1)/2 + n+1 = (n+1)( n/2 + 1) = (n+1)(n + 2)/2 . . . done
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. |
|||
|
|
|
|
It might lead you to stackoverflowexception :) |
|||
|
|
|
|
Recursion: See recursion Can't remember exactly where I saw that. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
Recursion is similar to loops : it has a start value an a target : lets see this
as you can see the code above is c++ simple code of a summing function from 0 to 100 you can call it by
there are basic rules when you write a recursive function usually you need to write a condition to know when to stop:
also you need to let the function call itself while carrying the data that were calculated for each cycle.
here is an example of calculating factory of an n .
you can call it like this
|
|||
|
|
|
Explain recursion in terms of conquer-and-divide. If the person has not understood recursion, explain recursion, then come back to the current explanation. |
|||
|
|
|
|
I read this one once, kind of liked it..
|
||||
|
|
|
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. |
|||
|
|
|
|
Now you're thinking with portals |
|||
|
|
|
|
Also, to understand recursion you have to understand recursion. |
|||
|
|
|
|
Recursion demonstrated as only David Hasselhoff can. |
|||
|
|
|
|
However, the recursion must have an end, otherwise it's an infinite loop. So according to wikipedia:
A simple examle, taken from said article, can be of the factorial function, which in C would be defined like so:
|
||||||||
|
|
|
If you don't get recursion, you should see this question for the answer |
||||||||||||||||
|
