Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
Homework I assume? me.utexas.edu/~bard/IP/Handouts/cycles.pdf not that it's not a valid question :) – ShuggyCoUk Feb 13 '09 at 16:57
1  
Note that this is at least NP Hard. Possibly PSPACE, I'd have to think about it, but it's too early in the morning for complexity theory B-) – Brian Postow May 17 '10 at 14:08
1  
If your input graph has v vertices and e edges then there are 2^(e - v +1)-1 different cycles (although not all might be simple cycles). That's quite a lot - you might not want to explicitly write all of them. Also, since the output size is exponential, the complexity of the algorithm cannot be polynomial. I think there is still no answer to this question. – CygnusX1 Mar 2 '11 at 6:57
1  
My best option for me was this: personal.kent.edu/~rmuhamma/Algorithms/MyAlgorithms/GraphAlgor/… – Melsi Mar 5 '12 at 19:48

10 Answers

up vote 59 down vote accepted

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:

  1. Wikipedia on Tarjans algorithm: http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm

  2. A rigorous explanation: http://www.ics.uci.edu/~eppstein/161/960220.html

  3. Other interesting links:
    http://discuss.joelonsoftware.com/default.asp?design.4.249152.10
    http://forums.sun.com/thread.jspa?threadID=597673
    http://coding.derkeiler.com/Archive/General/comp.theory/2004-02/0468.html

  4. Similar question on SO: Best algorithm for detecting cycles in a directed graph

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):
1.Two vertices, A and B, are strongly connected if there's a path from A to B and a path from B to A.

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
The question you have isn't trivial to solve. Here's how Tarjans algorithm works-

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
The link to the question on stackoverflow, provided below, confirms my answer that Tarjan's algorithm will work.

Edit
This question is still puzzling me - This algorithm is linear in V+E. However, the number of cycles may be exponential in V. I am quite puzzled as to how this can be possible? I haven't been able to figure it out myself.
See this link: http://www.me.utexas.edu/~bard/IP/Handouts/cycles.pdf given by ShuggyCoUk and unknown(yahoo) for more details about the no. of cycles.

share|improve this answer
9  
first link returns 404, please remove it – Vitalii Fedorenko May 8 '10 at 16:15
It can happen that your whole graph is a single huge strongly-connected component. What next? – CygnusX1 Mar 1 '11 at 21:21
4  
This is false: "3.Any strongly connected component with more than one vertex in it is a cycle." – Emil Aug 10 '11 at 11:35
1  
This algorithm doesn't find all the cycles in the graph. Consider an undirected graph with edges = {(1,2),(2,3),(3,4),(4,5),(5,1), (4,1),(4,6),(5,6)}. In this graph the algorithm would find cycles (1,2,3,4,5,1), (1,2,3,4,1), and (4,5,6,4) but not (1,4,5) and others. (if the DFS will visit the vertexes in order). XORing the incidence vectors as in the cycles.pdf link, won't find it either, though it will fond other circles. – RA. Nov 8 '11 at 9:36
1  
I think the confusion is because the wrongly assumed equivalence of strongly connected components with more then one node and cycles. A strongly connected component contains at least one cycle, but it might actually contain a huge number. For an extreme case consider a complete graph. It is one SCC but contains a number of cycles that is exponential in the number of nodes. – Jens Schauder Feb 3 at 11:49
show 4 more comments

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.

share|improve this answer
1  
I find it such a hassle to implement from the paper, and ultimately this aglorithm still requires an implementation of Tarjan. And the Java-code is hideous too. :( – Gleno Apr 29 '11 at 23:05
2  
@Gleno Well, if you mean that you can use Tarjan to find all cycles in the graph instead of implementing the rest, you are wrong. Here, you can see the difference between strongly connected components and all cycles (The cycles c-d and g-h won't be returned by Tarjan's alg)(@batbrat The answer of your confusion is also hidden here: All possible cycles are not returned by Tarjan's alg, so its complexity could be smaller than exponential). The Java-Code could be better, but it saved me the effort of implementing from the paper. – eminsenay May 2 '11 at 14:47
After a little research you are 100% correct. I'm confused to why your answer isn't accepted. – Gleno May 9 '11 at 10:14
@Gleno The answer was a little bit late :) – eminsenay May 9 '11 at 12:11
Thank you!! I have been staring at my Tarjan implementation for about an hour, trying to figure out why it was detecting cycles that didn't exist, until I realized I was misinterpreting the output and it was giving me SCCs instead of cycles. Much appreciated for clarifying the difference and providing material that goes the extra step! – Domenic Jun 1 '11 at 21:22
show 1 more comment

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.

dfs(adj,node,visited):  
  if (visited[node]):  
    if (node == start):  
      "found a path"  
    return;  
  visited[node]=YES;  
  for child in adj[node]:  
    dfs(adj,child,visited)
  visited[node]=NO;

Call the above function with the start node:

visited = {}
dfs(adj,start,visited)
share|improve this answer
1  
Thanks. I prefer this approach to some of the others noted here as it is simple(r) to understand and has reasonable time complexity, albeit perhaps not optimal. – locster Jul 17 '11 at 23:26

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.

share|improve this answer

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.

  1. how do you determine the next valid route
  2. how do you determine if a point has been used
  3. how do you avoid crossing over the same point again

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.

share|improve this answer

http://www.me.utexas.edu/~bard/IP/Handouts/cycles.pdf

share|improve this answer
The question was about removing cycles in directed graphs, but this document is on undirected ones. – ialencar Apr 29 at 2:06

can't you make a little recursive function to traverse the nodes?

readDiGraph( string pathSoFar, Node x) {

if(NoChildren) MasterList.add( pathsofar + Node.name ) ; 

foreach( child ) 
{
   readDiGraph( pathsofar + "->" + this.name, child) 
}

}

if you have a ton of nodes you will run out of stack

share|improve this answer

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.
Additionally, I only checked it out for triangles so far. If interested, please see "Arboricity and Subgraph Listing Algorithms" by Norishige Chiba and Takao Nishizeki (http://dx.doi.org/10.1137/0214017)

share|improve this answer

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.)

share|improve this answer

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

<?php
echo  "<pre><br><br>";

$G = array(
        1=>array(1,2,3),
        2=>array(1,2,3),
        3=>array(1,2,3)
);


define('N',key(array_slice($G, -1, 1, true)));
$P = array(1=>0,2=>0,3=>0,4=>0,5=>0);
$H = array(1=>$P, 2=>$P, 3=>$P, 4=>$P, 5=>$P );
$k = 1;
$P[$k] = key($G);
$Circ = array();


#[Path Extension]
EC2_Path_Extension:
foreach($G[$P[$k]] as $j => $child ){
    if( $child>$P[1] and in_array($child, $P)===false and in_array($child, $H[$P[$k]])===false ){
    $k++;
    $P[$k] = $child;
    goto EC2_Path_Extension;
}   }

#[EC3 Circuit Confirmation]
if( in_array($P[1], $G[$P[$k]])===true ){//if PATH[1] is not child of PATH[current] then don't have a cycle
    $Circ[] = $P;
}

#[EC4 Vertex Closure]
if($k===1){
    goto EC5_Advance_Initial_Vertex;
}
//afou den ksana theoreitai einai asfales na svisoume
for( $m=1; $m<=N; $m++){//H[P[k], m] <- O, m = 1, 2, . . . , N
    if( $H[$P[$k-1]][$m]===0 ){
        $H[$P[$k-1]][$m]=$P[$k];
        break(1);
    }
}
for( $m=1; $m<=N; $m++ ){//H[P[k], m] <- O, m = 1, 2, . . . , N
    $H[$P[$k]][$m]=0;
}
$P[$k]=0;
$k--;
goto EC2_Path_Extension;

#[EC5 Advance Initial Vertex]
EC5_Advance_Initial_Vertex:
if($P[1] === N){
    goto EC6_Terminate;
}
$P[1]++;
$k=1;
$H=array(
        1=>array(1=>0,2=>0,3=>0,4=>0,5=>0),
        2=>array(1=>0,2=>0,3=>0,4=>0,5=>0),
        3=>array(1=>0,2=>0,3=>0,4=>0,5=>0),
        4=>array(1=>0,2=>0,3=>0,4=>0,5=>0),
        5=>array(1=>0,2=>0,3=>0,4=>0,5=>0)
);
goto EC2_Path_Extension;

#[EC5 Advance Initial Vertex]
EC6_Terminate:
print_r($Circ);
?>

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.

<?php

$G = array(
        -4=>array(-4=>true,-3=>true,-2=>true),
        -3=>array(-4=>true,-3=>true,-2=>true),
        -2=>array(-4=>true,-3=>true,-2=>true)
);


$C = array();


EC($G,$C);
echo "<pre>";
print_r($C);
function EC($G, &$C){

    $CNST_not_closed =  false;                          // this flag indicates no closure
    $CNST_closed        = true;                         // this flag indicates closure
    // define the state where there is no closures for some node
    $tmp_first_node  =  key($G);                        // first node = first key
    $tmp_last_node  =   $tmp_first_node-1+count($G);    // last node  = last  key
    $CNST_closure_reset = array();
    for($k=$tmp_first_node; $k<=$tmp_last_node; $k++){
        $CNST_closure_reset[$k] = $CNST_not_closed;
    }
    // define the state where there is no closure for all nodes
    for($k=$tmp_first_node; $k<=$tmp_last_node; $k++){
        $H[$k] = $CNST_closure_reset;   // Key in the closure arrays represent nodes
    }
    unset($tmp_first_node);
    unset($tmp_last_node);


    # Start algorithm
    foreach($G as $init_node => $children){#[Jump to initial node set]
        #[Initial Node Set]
        $P = array();                   // declare at starup, remove the old $init_node from path on loop
        $P[$init_node]=true;            // the first key in P is always the new initial node
        $k=$init_node;                  // update the current node
                                        // On loop H[old_init_node] is not cleared cause is never checked again
        do{#Path 1,3,7,4 jump here to extend father 7
            do{#Path from 1,3,8,5 became 2,4,8,5,6 jump here to extend child 6
                $new_expansion = false;
                foreach( $G[$k] as $child => $foo ){#Consider each child of 7 or 6
                    if( $child>$init_node and isset($P[$child])===false and $H[$k][$child]===$CNST_not_closed ){
                        $P[$child]=true;    // add this child to the path
                        $k = $child;        // update the current node
                        $new_expansion=true;// set the flag for expanding the child of k
                        break(1);           // we are done, one child at a time
            }   }   }while(($new_expansion===true));// Do while a new child has been added to the path

            # If the first node is child of the last we have a circuit
            if( isset($G[$k][$init_node])===true ){
                $C[] = $P;  // Leaving this out of closure will catch loops to
            }

            # Closure
            if($k>$init_node){                  //if k>init_node then alwaya count(P)>1, so proceed to closure
                $new_expansion=true;            // $new_expansion is never true, set true to expand father of k
                unset($P[$k]);                  // remove k from path
                end($P); $k_father = key($P);   // get father of k
                $H[$k_father][$k]=$CNST_closed; // mark k as closed
                $H[$k] = $CNST_closure_reset;   // reset k closure
                $k = $k_father;                 // update k
        }   } while($new_expansion===true);//if we don't wnter the if block m has the old k$k_father_old = $k;
        // Advance Initial Vertex Context
    }//foreach initial


}//function

?>

I have analized and documented the EC but unfortunately the documentation is in Greek.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.