Can anybody suggest programming examples that illustrate recursive functions? There are the usual old horses such as Fibonacci series and Towers of Hanoi, but anything besides them would be fun.
|
This illustration is in English, rather than an actual programming language, but is useful for explaining the process in a non-technical way:
A child couldn't sleep, so her mother told a story about a little frog,
who couldn't sleep, so the frog's mother told a story about a little bear,
who couldn't sleep, so bear's mother told a story about a little weasel
...who fell asleep.
...and the little bear fell asleep;
...and the little frog fell asleep;
...and the child fell asleep.
|
|||||||||||||||||||||
|
|
Write a recursive descent parser! |
|||
|
|
|
Another couple of "usual-suspects" are Quicksort and MergeSort |
||||
|
|
|
How about testing a string for being a palindrome?
Of course, you could do that with a loop more efficiently. |
|||
|
The interpreter design pattern is a quite nice example because many people don't spot the recursion. The example code listed in the Wikipedia article illustrates well how this can be applied. However, a much more basic approach that still implements the interpreter pattern is a
(Yes, I know it's not easy to spot the interpreter pattern in the above code if you expect a function called |
|||||||||
|
|
From the world of math, there is the Ackermann function:
It always terminates, but it produces extremely large results even for very small inputs. Ackermann(4, 2), for example, returns 265536 − 3. |
|||
|
|
|
In my opinion, recursion is good to know, but most solutions that could use recursion could also be done using iteration, and iteration is by far more efficient. That said here is a recursive way to find a control in a nested tree (such as ASP.NET or Winforms):
|
|||||||||||||
|
|
In order to understand recursion, one must first understand recursion. |
|||
|
|
|
Here's a pragmatic example from the world of filesystems. This utility recursively counts files under a specified directory. (I don't remember why, but I actually had a need for something like this long ago...)
(Note that in Java a A common real world example would be e.g. |
|||
|
|
|
Implementing Graphs by Guido van Rossum has some recursive functions in Python to find paths between two nodes in graphs. |
|||
|
|
|
My favorite sort, Merge Sort (Favorite since I can remember the algorithm and is it not too bad performance-wise) |
|||
|
|
The hairiest example I know is Knuth's Man or Boy Test. As well as recursion it uses the Algol features of nested function definitions (closures), function references and constant/function dualism (call by name). |
|||
|
|
|
As others have already said, a lot of canonical recursion examples are academic. Some practical uses I 've encountered in the past are: 1 - Navigating a tree structure, such as a file system or the registry 2 - Manipulating container controls which may contain other container controls (like Panels or GroupBoxes) |
|||
|
|
|
A real-world example is the "bill-of-materials costing" problem. Suppose we have a manufacturing company that makes final products. Each product is describable by a list of its parts and the time required to assemble those parts. For example, we manufacture hand-held electric drills from a case, motor, chuck, switch, and cord, and it takes 5 minutes. Given a standard labor cost per minute, how much does it cost to manufacture each of our products? Oh, by the way, some parts (e.g. the cord) are purchased, so we know their cost directly. But we actually manufacture some of the parts ourselves. We make a motor out of a housing, a stator, a rotor, a shaft, and bearings, and it takes 15 minutes. And we make the stator and rotor out of stampings and wire, ... So, determining the cost of a finished product actually amounts to traversing the tree that represents all whole-to-list-of-parts relationships in our processes. That is nicely expressed with a recursive algorithm. It can certainly be done iteratively as well, but the core idea gets mixed in with the do-it-yourself bookkeeping, so it's not as clear what's going on. |
|||
|
|
|
The rule of thumb for recursion is, "Use recursion, if and only if on each iteration your task splits into two or more similar tasks". So Fibonacci is not a good example of recursion application, while Hanoi is a good one. So most of the good examples of recursion are tree traversal in different disquises. For example: graph traversal - the requirement that visited node will never be visited again effectively makes graph a tree (a tree is a connected graph without simple cycles) divide and conquer algorithms (quick sort, merge sort) - parts after "divide" constitute children nodes, "conquer" constitues edges from parent node to child nodes. |
|||
|
|
|
My personal favorite is Binary Search Edit: Also, tree-traversal. Walking down a folder file structure for instance. |
|||||||
|
|
|||||||||||
|
|
Here is a sample I posted on this site a while back for recursively generating a menu tree: Recursive Example |
|||
|
|
|
How about anything processing lists, like:
|
|||
|
|
|
Once upon a time, and not that long ago, elementary school children learned recursion using Logo and Turtle Graphics. http://en.wikipedia.org/wiki/Turtle_graphics Recursion is also great for solving puzzles by exhaustive trial. There is a kind of puzzle called a "fill in" (Google it) in which you get a grid like a crossword, and the words, but no clues, no numbered squares. I once wrote a program using recursion for a puzzle publisher to solve the puzzles in order be sure the known solution was unique. |
||||
|
|
|
Recursive functions are great for working with recursively defined datatypes:
Etc. |
|||
|
|
How about reversing a string?
Understanding this helps understand recursion. |
|||||||||
|
|
Translate a spreadsheet column index to a column name. It's trickier than it sounds, because spreadsheet columns don't handle the '0' digit properly. For example, if you take A-Z as digits when you increment from Z to AA it would be like going from 9 to 11 or 9 to 00 instead of 10 (depending on whether A is 1 or 0). Even the Microsoft Support example gets it wrong for anything higher than AAA! The recursive solution works because you can recurse right on those new-digit boundries. This implementation is in VB.Net, and treats the first column ('A') as index 1.
|
||||
|
|
