Can anyone suggest real-world problems where a recursive approach is the natural solution besides DFS?
(I don't consider towers-of-Hanoi, fibonacci sequence, or factorial real-world problems. They are a bit contrived in my mind.)
|
8
|
|||||
|
|
|
There are lots of mathy examples here, but you wanted a real world example, so with a bit of thinking, this is possibly the best I can offer: You find a person who has contracted a given contageous infection, which is non fatal, and fixes itself quickly( Type A) , Except for one in 5 people ( We'll call these type B ) who become permanently infected with it and shows no symptoms and merely acts a spreader. This creates quite annoying waves of havoc when ever type B infects a multitude of type A. Your task is to track down all the type Bs and immunise them to stop the backbone of the disease. Unfortunately tho, you cant administer a nationwide cure to all, because the people whom are typeAs are also deadly allergic to the cure that works for type B. The way you would do this, would be social discovery, given an infected person(Type A), choose all their contacts in the last week, marking each contact on a heap. When you test a person is infected, add them to the "follow up" queue. When a person is a type B, add them to the "follow up" at the head ( because you want to stop this fast ). After processing a given person, select the person from the front of the queue and apply immunization if needed. Get all their contacts previously unvisited, and then test to see if they're infected. Repeat until the queue of infected people becomes 0, and then wait for another outbreak.. ( Ok, this is a bit iterative, but its an iterative way of solving a recursive problem, in this case, breadth first traversal of a population base trying to discover likely paths to problems, and besides, iterative solutions are often faster and more effective, and I compulsively remove recursion everywhere so much its become instinctive. .... dammit! ) |
|||
|
|
How about anything involving a directory structure in the file system. Recursively finding files, deleting files, creating directories, etc. |
||||
|
|
|
Quick sort, merge sort, and most other N-logN sorts |
|||
|
|
|
|
Recursion is used in things like BSP trees for collision detection in game development (and other similar areas). |
|||
|
|
|
|
Matt Dillard's example is good. More generally, any walking of a tree can generally be handled by recursion very easily. For instance, compiling parse trees, walking over XML or HTML, etc. |
|||
|
|
|
|
Phone and cable companies maintain a model of their wiring topology, which in effect is a large network or graph. Recursion is one way to traverse this model when you want to find all parent or all child elements. Since recursion is expensive from a processing and memory perspective, this step is commonly only performed when the topology is changed and the result is stored in a modified pre-ordered list format. |
|||
|
|
|
|
XML, or traversing anything that is a tree. Although, to be honest, I pretty much never use recursion in my job. |
|||
|
|
Surely that many compilers out there use recursion heavily. Computer languages are inherently recursive themselves (i.e., you can embed 'if' statements inside other 'if' statements, etc.). |
|||
|
|
A "real-world" problem solved by recursion would be nesting dolls. Your function is OpenDoll() given a stack of them, you would recursilvey open the dolls, calling OpenDoll() if you will, until you've reached the inner-most doll. |
|||
|
|
|
|
Recursion is often used in implementations of the Backtracking algorithm. For a "real-world" application of this, how about a Sudoku solver? |
|||
|
|
Inductive reasoning, the process of concept-formation, is recursive in nature. Your brain does it all the time, in the real world. |
|||
|
|
|
|
Parsing an xml file. |
|||
|
|
|
|
Suppose you are building a CMS for a website, where your pages are in a tree structure, with say the root being the home-page. Suppose also your {user|client|customer|boss} requests that you place a breadcrumb trail on every page to show where you are in the tree. For any given page n, you'll may want to walk up to the parent of n, and its parent, and so on, recursively to build a list of nodes back up to the root of page tree. Of course, you're hitting the db several times per page in that example, so you may want to use some SQL aliasing where you look up page-table as a, and page-table again as b, and join a.id with b.parent so you make the database do the recursive joins. It's been a while, so my syntax is probably not helpful. Then again, you may just want to only calculate this once and store it with the page record, only updating it if you move the page. That'd probably be more efficient. Anyway, that's my $.02 |
|||
|
|
|
|
You have an organization tree that is N levels deep. Several of the nodes are checked, and you want to expand out to only those nodes that have been checked. This is something that I actually coded. Its nice and easy with recursion. |
|||
|
|
|
|
I just wrote a recursive function to figure out if a class needed to be serialized using a DataContractSerializer. The big issue came with templates/generics where a class could contain other types that needed to be datacontract serialized... so it's go through each type, if it's not datacontractserializable check it's types. |
|||
|
|
|
|
Mostly recursion is very natural for dealing with recursive data structures. This basically means list structures, and tree structures. But recursion is also a nice natural way of /creating/ tree structures on the fly in some way, by divide-and-conquer for instance Quick-sort, or binary search. I think your question is a bit misguided in one sense. What's not real-world about depth first search? There's a lot you can do with depth-first search. For instance, another example I thought of giving is recursive descent compilation. It is enough of a real-world problem to have been used in many real-world compilers. But you could argue it is DFS, it is basically a depth-first-search for a valid parse tree. |
|||
|
|
|
|
We use them to do SQL path-finding. I will also say it's a pain-in-the-ass to debug, and it's very easy for a poor programmer to screw it up. |
|||
|
|
|
|
A real world example of indirect recursion would be asking your parents if you can have that video game for christmas. Dad: "Ask mom."... Mom: "Ask Dad." [In short, "No, but we dont want to tell you that lest you throw a tantrum."] |
||||
|
|
|
Parsers and compilers may be written in a recursive-descent method. Not the best way to do it, as tools like lex/yacc generate faster and more efficient parsers, but conceptually simple and easy to implement, so they remain common. |
|||
|
|
|
|
Towers of Hanoi Here's one you can interact with: http://www.mazeworks.com/hanoi/
|
|||
|
|
|
|
I have a system that uses pure tail recursion in a few places to simulate a state mechine |
|||
|
|
|
|
A real world example of recursion
|
||||||||
|
|
|
Recursion is appropriate whenever a problem can be solved by dividing it into sub-problems. Algorithms on trees and sorted lists are a natural fit. Many problems in computational geometry (and 3d games) can be solved recursively using BSP trees, fat subdivisions, or other ways of dividing the world into sub-parts. Recursion is also appropriate when you are trying to guarantee the correctness of an algorithm. Given a function that takes immutable inputs and returns a result that is a combination of recursive and non-recursive calls on the inputs, it's usually easy to prove the function is correct (or not) using mathematical induction. It's often intractable to do this with an iterative function or with inputs that may mutate. This can be useful when dealing with financial calculations and other applications where correctness is very important. |
|||
|
|
|
|
Ditto the comment about compilers. The abstract syntax tree nodes naturally lend themselves to recursion. All recursive data structures (linked lists, trees, graphs, etc.) are also more easily handled with recursion. I do think that most of us don't get to use recursion a lot once we are out of school because of the types of real-world problems, but it's good to be aware of it as an option. |
|||
|
|
|
|
In my job we have a system with a generic data structure that can be described as a tree. That means that recursion is a very effective technique to work with the data. Solving it without recursion would require a lot of unnecessary code. The problem with recursion is that it is not easy to follow what happens. You really have to concentrate when following the flow of execution. But when it works the code is elegant and effective. |
|||
|
|
|
|
I think that this really depends upon the language. In some languages, LISP for example, recursion is often the natural response to a problem (and often with languages where this is the case, the compiler is optimized to deal with recursion). The common pattern in lisp of performing an operation on the first element of a list and then calling the function on the rest of the list in order to either accumulate a value or a new list is quite elegant and most natural way to do a lot of things in that language. In java, not so much. |
|||
|
|
|
|
People often sort stacks of documents using a recursive method. For example, imagine you are sorting 100 documents with names on them. First place documents into piles by the first letter, then sort each pile. Looking up words in the dictionary is often performed by a binary-search-like technique, which is recursive. In organizations, bosses often give commands to department heads, who in turn give commands to managers, and so on. |
|||
|
|
|
|
Disabling/setting read-only for all children controls in a container control. I needed to do this because some of the children controls were containers themselves.
|
|||
|
|
|
|
I wrote a tree in C# to handle lookups on a table that a 6-segmented key with default cases (if key[0] doesn't exist, use the default case and continue). The lookups were done recursively. I tried a dictionary of dictionaries of dictionaries (etc) and it got way too complex very quickly. I also wrote a formula evaluator in C# that evaluated equations stored in a tree to get the evaluation order correct. Granted this is likely a case of choosing the incorrect language for the problem but it was an interesting exercise. I didn't see many examples of what people had done but rather libraries they had used. Hopefully this gives you something to think about. |
|||
|
|
|
|
Multiplication of natural numbers is a real-world example of recursion:
|
|||
|
|