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?
|
|
This may be the most absurdly feared issue in all of software construction. It's a footnote, not very relevant for most real life projects, many times used with no need by people who think it's cool, and program it with no testing whatsoever and then wonder that their software never ends. Do your job normally, use the right function for each action, test your code, be clear and know the syntax and semantics of the language you're using, and you'll be ok. |
|||
|
|
|
|
Go to google and search for Recursion and then start clicking on Recursion after "Did you mean"
|
|||
|
|
|
|
You ask google |
|||
|
|
I have always been partial to using the Fibonacci Sequence to explain recursion -- probably 'cause I had a cool adjunct professor who used it. I find the Fibonacci sequence easy to understand in math and trivial to transform into code. The nth Fibonacci Number can be computed by the formula:
The equation can easily be transformed into code:
Writing this code (with some appropriate output statements and watching how it works gives a good practical example of how recursion works. For the pitfalls and advantages of when to use it... well that's more complicated. |
|||
|
|
|
|
We did Scheme in uni last year, but I didn't fully appreciate recursion until I had a problem that was easiest to solve with a simple tree traversal algorithm. The simplest algorithm I could come up with just happened to loop on elements in a linked list structure and recurse when there was a form element (represented by a separate, isolated linked list). In java/C# style pseudo code:
|
|||
|
|
|
|
Learning Haskell is a good step, if only because you wind up using it for everything, and its fairly rigorous mathematical background makes reasoning by induction (or coinduction) about your programs fairly natural. That and its syntax largely just gets out of your way and lets you focus almost purely on the recursive aspects of your program. For example, a recursive solution to the towers of Hanoi is tiny, and you can readily see how the recursion is working.
|
|||
|
|
|
|
I learned recursion as a kid, programming Logo. It was an interesting (and fun, at the time) way to learn the concepts of recursion, iteration, parameters, functions, etc. And it did make it easier for me to later get into other stuff such as Pascal, C, etc (except BASIC, that thing sucks and I used it waaaaaaay too much in my youth) |
|||
|
|
|
|
The way I learned recursion is through the Flood Fill Algorithm. Maybe it will help you too. |
|||
|
|
|
|
You could always read this link |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Please see my answer here:
|
|||
|
|
|
|
I find this useful http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=recursionPt1 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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 compiler. I guarantee you'll understand recursion after you're finished. |
|||
|
|
|
|
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) |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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
|
|||
|
|
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 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. |
|||
|
|
|
|
One of the simplest examples I have seen is calculating a factorial
|
|||
|
|
|
|
Buy a book of functional programming and warp your mind. |
|||
|
|
|
|
If you understand recursion, you're done. Otherwise go read this StackOverflow question... |
||||||||
|
|
|
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. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
Some of the standard exercises/demonstrations:
|
|||
|
|
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! |
|||


