When I started in programming I started with c++ and was doing recursion in my second semester in a data structures class. I don't even remember how we started it, I think it was linked lists, but its a concept that I picked up easily and can jump into quickly, even when I haven't written any recursive code in quite some time. What is the best way to explain recursion to someone who doesn't understand it? What kind of simple examples could you show to someone to demonstrate the concept and quick exercises they could practice with to get the hang of it?
|
|
First you have to learn recursion. |
|||
|
|
First, learn recursion! Ooh! Beaten by two seconds! |
|||
|
|
|
|
I'd say a good example could be stepping recursively through a multiple level array. That was probably my first foray into recursive functions. |
|||
|
|
|
|
Infinite recursion == Stack Overflow :-) |
|||
|
|
|
|
Anything to do with tree structures makes it easy to explain recursion. For example, tracing a family tree. Find your parents, and for each of them, find their parents. The algorithm recurses. |
|||
|
|
|
|
There is another question dealing with this topic. I learnt recursion by writing code to draw a fractal tree, in logo*. I found it a fun introduction. Logo is actually a very nice language for a learner, especially regarding recursion. * http://en.wikipedia.org/wiki/Logo_(programming_language) (damn urls-with-brackets-in-them bug) |
|||
|
|
The book Common Lisp: A Gentle Introduction to Symbolic Computation has an entire chapter (chapter 8) on recursion. The dragon stories in there might help. They are ideal for beginners. |
|||
|
|
|
|
Tree traversal is the simplest way to show recursion. You can show how easy it is to do depth first, bredth first, left first, right first etc with a very simple function.
You just need to change the order of print and Traverse functions to change the type of traversal. |
|||
|
|
|
|
I feel like I have been saying using this book as an answer all day, but The Little Schemer is a fun and easy way to learn recursion really well. Jelly stains! |
|||
|
|
Some of the standard exercises/demonstrations:
|
|||
|
|
The way I learned recursion was through a haskell course. The method that sticks with me the most is multiplication using recursion. So suppose we have a function mult which multiplies two numbers
We have defined 3 cases, two which stops the recursion (known as base cases) and one which calls mult again (the recursive case). As long as the recursive case progresses towards one of the base cases then this function will eventually return. So mult 3 3 would follow this recursion:
|
|||
|
|
|
|
I learned it by writing code that displays threaded/nested comments. I had tried learning it before but didn't really get it until I actually had to use it. |
|||
|
|
|
|
If you understand recursion, you're done. Otherwise go read this StackOverflow question... |
||||||||
|
|
|
Buy a book of functional programming and warp your mind. |
|||
|
|
|
|
One of the simplest examples I have seen is calculating a factorial
|
|||
|
|
|
|
I agree with Matt's answer. I always found tree structures well suited to explaining recursion. The definition of the tree itself is recursive as are the algorithms to traverse and perform operations on them. I think using recursive definitions as opposed to algorithms make the concept a bit easier to grasp because they are typically terse and have little to do with actual code. Factorials and other mathematical formulas fall into this category as well. |
|||
|
|
|
|
Start learning lisp. You don't have to set out to make a huge program in lisp, but you can redo simple things. Like if you have a crazy loop, try turning it into a recursive function in lisp. or you can try to do simple things like x^y. If you don't want to learn lisp try rewriting a very small program or old homework assignment only not using any loops, just recursion. Note: in most languages, you are better off using a loop then recursion. Loops are easier for new programmers to understand as well. |
|||
|
|
I think one of the best ways to learn recursion is reading Structure and Interpretation of Computer Programs, you'll see a lot of recursion there. Try to use DrScheme with your learning
|
|||
|
|
I like to explain recursion to non programmers by picturing they want to build a Lego castle with 300 pieces. The problem is, they don't know how to build it with 300 piece, so they start by ease up the problem or "recursive" call the easier problem, build the castle with 299 pieces and look how they put the final peace to the castle. Now they call themselves recursively again to solve the castle with 298 pieces and so on until there is only the castle with 2 pieces, which is the only castle they can solve immediately. After building the castle with 2 pieces, they now can build it with 3 pieces and so on. Also I explain that recursion always needs two things, nothing more but nothing less:
|
|||
|
|
|
|
The best article I have ever read, and what really helped me understand recursion was Douglas Crockfords article "The little javascripter" (http://javascript.crockford.com/little.html) |
|||
|
|
|
|
Write a compiler. I guarantee you'll understand recursion after you're finished. |
|||
|
|
|
|
I really liked the way it was explained in my data structures class. The basic idea is to take a large and/or complex problem, and break it down into small, easy to manage pieces. For instance, 9! can be broken down this way: I don't know what 9! is, but I know it's equal to 9 * 8! thus, 2! = 2 * 1 and 3! = 3 * 2 * 1 ... so 9! = 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 362,880 As you break the problem down, you should continue to approach the simplest form of the problem, in this case, 1!. If your algorithm does not approach the simplest case, or "base case", then it will continue forever, or until you reach software/hardware constraints. So, in a factorial function, there are two cases: 1!, and everything else. It looks something like this:
Another fun (although somewhat more complex) problem that is best solved using recursion is the Towers of Hanoi problem. |
|||
|
|
|
|
Write a single function which creates a text file and all the missing parent folders in its path:
I'm not a mathematician so I find this easier to test than number sequences (Fibonacci, factorial). |
|||
|
|
|
|
Give them an example to list all the folders/subfolders of their drive. For those kind of structures, they could appreciate how elegant recursion is. |
|||
|
|
|
|
I learned recursion the following way
Now do the same without recursion. Try tree traversal, Depth first search later. In short, You want to learn to code in recursion to learn it. |
|||
|
|
|
|
I find this useful http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=recursionPt1 |
|||
|
|
|
|
Please see my answer here:
|
|||
|
|
|
|
Dang, someone already took the joke. :-) To be serious, for years I was afraid of recursion and didn't quite understand it. What cured me was taking a class in Lisp, and writing and deubgging largeish programs in it. Now it is one of my favorite techniques. There really is no better way to learn a programming technique than by doing it. As far as explaining it to someone else? That's tougher. It is just not that natural of a concept for a human being. A particular problem is that there is the concept of a stack implicit in it. But you can't really explain that if your listener doesn't understand a little bit about how a computer's stack pointer works, and what goes on under the scenes when you call a subroutine. |
|||
|
|
|
|
I think it's important to begin with the recognition that recursion is easy. Far too many books and courses step into the subject by making it scary. There is a headline: RECURSION ... and then there's a couple of paragraphs telling you to concentrate. In a school/college setting, perhaps there's mutterings from the year above "just wait til you reach recursion". The fact is, there's nothing to fear. Approach it as such. All recursion boils down to:
For example, sorting a list is a big job. But it's very simple if you say:
The nice thing is that we can casually toss in the word "sorted" into the 'for any other list' step, because we already know how to sort. Even though we are that implementation. In Haskell:
|
|||
|
|
|
|
You could always read this link |
|||
|
|

