How can I find (iterate over) ALL the cycles in a directed graph from/to a given node?
For example, I want something like this:
A->B->A
A->B->C->A
but not: B->C->B
|
How can I find (iterate over) ALL the cycles in a directed graph from/to a given node? For example, I want something like this:
but not: B->C->B |
|||||||||||||||||
|
|
As far as I know, the best way to solve this would be with Tarjans(or Gabows or Kosaraju's --see Wikipedia link below) algorithm for finding strongly connected components of a graph. Strongly connected components and cycles are synonymous (not exactly). To get a better idea, please see the following links:
Now, that I've given the links, let me proceed to explain (after all its good answers and not links that really make stackoverflow such a great place). Some points to remember (Taken from link 1): 2.The set of all vertices that are strongly connected to a given vertex forms a strongly connected component of a graph. 3.Any strongly connected component with more than one vertex in it is a cycle. 4.We want to somehow collapse all the vertices in a cycle into a single node in a 'tree' (See links). Any future cycle involving vertices we've already visited gets folded into the same node. What we end up with is a tree where each node is a strongly connected component. 5.To do this is to store two extra bits of information on each node. The number of steps the depth-first search takes to reach that node and the minimum number of steps the depth-first search takes to reach any node in that node's strongly connected component (from the nodes we've seen so far). 6.As we perform a depth-first search on the main graph, we use the secondary data structure to help with the testing of whether two nodes are "the same" (in the same strongly connected component, as it turns out) and add the current node to that secondary structure correctly. Algorithm 1.The first thing to know is that you have to do a DFS. I am assuming that a stack is used to implement it. The DFS has to cover all vertices in the graph. 2.Each vertex v, has to be labeled with two values, the index and the lowval. The index is simply the order in which DFS visits the node. The lowval is the minimum of the v's index and the index of the vertex that is nearest to v in the DFS. This vertex is then pushed onto the stack. 3.For each vertex accessible from v, recurse if it isn't already in the stack. 4.For a vertex v, whose lowval == index, pop off all elements on the stack upto v itself and print them as one strongly connected component (cycle). I am going to try and implement this algorithm. I'll post it here if I succeed and if you want it at that time. Edit Edit |
|||||||||||||||||||
|
|
I found this page in my search and since cycles are not same as strongly connected components, I kept on searching and finally, I found an efficient algorithm which lists all (elementary) cycles of a directed graph. It is from Donald B. Johnson and the paper can be found in the following link: http://dutta.csc.ncsu.edu/csc791_spring07/wrap/circuits_johnson.pdf A java implementation can be found in: http://normalisiert.de/code/java/elementaryCycles.zip Note: Actually, there are many algorithms for this problem. Some of them are listed in this article: http://dx.doi.org/10.1137/0205007 According to the article, Johnson's algorithm is the fastest one. |
|||||||||||||||
|
|
Depth first search with backtracking should work here. Keep an array of boolean values to keep track of whether you visited a node before. If you run out of new nodes to go to (without hitting a node you have already been), then just backtrack and try a different branch. The DFS is easy to implement if you have an adjacency list to represent the graph. For example adj[A] = {B,C} indicates that B and C are the children of A. For example, pseudo-code below. "start" is the node you start from.
Call the above function with the start node:
|
|||||
|
|
Start at node X and check for all child nodes (parent and child nodes are equivalent if undirected). Mark those child nodes as being children of X. From any such child node A, mark it's children of being children of A, X', where X' is marked as being 2 steps away.). If you later hit X and mark it as being a child of X'', that means X is in a 3 node cycle. Backtracking to it's parent is easy (as-is, the algorithm has no support for this so you'd find whichever parent has X'). Note: If graph is undirected or has any bidirectional edges, this algorithm gets more complicated, assuming you don't want to traverse the same edge twice for a cycle. |
|||
|
|
|
I was given this as an interview question once, I suspect this has happened to you and you are coming here for help. Break the problem into three questions and it becomes easier.
Problem 1) Use the iterator pattern to provide a way of iterating route results. A good place to put the logic to get the next route is probably the "moveNext" of your iterator. To find a valid route, it depends on your data structure. For me it was a sql table full of valid route possibilities so I had to build a query to get the valid destinations given a source. Problem 2) Push each node as you find them into a collection as you get them, this means that you can see if you are "doubling back" over a point very easily by interrogating the collection you are building on the fly. Problem 3) If at any point you see you are doubling back, you can pop things off the collection and "back up". Then from that point try to "move forward" again. Hack: if you are using Sql Server 2008 there is are some new "hierarchy" things you can use to quickly solve this if you structure your data in a tree. |
|||
|
|
|
|
|||
|
|
can't you make a little recursive function to traverse the nodes? readDiGraph( string pathSoFar, Node x) {
} if you have a ton of nodes you will run out of stack |
|||
|
|
|
I stumbled over the following algorithm which seems to be more efficient than Johnson's algorithm (at least for larger graphs). I am however not sure about its performance compared to Tarjan's algorithm. |
|||
|
|
|
The easiest answer to this problem is probably: Do a Depth-First Search from A. When you visit a node which has a path to A, you have got your cycle. (If you are not in a directed graph.) |
||||
|
|
|
If what you want is to find all elementary circuits in a graph you can use the EC algorithm, by JAMES C. TIERNAN, found on a paper since 1970. The very original EC algorithm as I managed to implement it in php (hope there are no mistakes is shown below). It can find loops too if there are any. The circuits in this implementation (that tries to clone the original) are the non zero elements. Zero here stands for non-existence (null as we know it). Apart from that below follows an other implementation that gives the algorithm more independece, this means the nodes can start from anywhere even from negative numbers, e.g -4,-3,-2,.. etc. In both cases it is required that the nodes are sequential. You might need to study the original paper, James C. Tiernan Elementary Circuit Algorithm
then this is the other implementation, more independent of the graph, without goto and without array values, instead it uses array keys, the path, the graph and circuits are stored as array keys (use array values if you like, just change the required lines). The example graph start from -4 to show its independence.
I have analized and documented the EC but unfortunately the documentation is in Greek. |
||||
|
|