Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I check if a directed graph is acyclic? And how is the algorithm called? I would appreciate a reference. Niko

share|improve this question
Are you looking for an abstract algorithm or a concrete implementation? – Mark Johnson Feb 24 '09 at 22:26
Another case in favor of some way to "fix" wrong answers on SO. – Sparr Feb 24 '09 at 22:33
1  
So, umm, I am mostly interested in the time needed to find it. So, I just need the abstract algorithm. – nes1983 Feb 24 '09 at 22:39
you must traverse all edges and check all vertices so lower bound is O(|V| + |E|). DFS and BFS are both the same complexity but DFS is easier to code if you have recursion as that manages the stack for you... – ShuggyCoUk Feb 24 '09 at 22:43
DFS is not the same complexity. Consider the graph with nodes { 1 .. N }, and edges in the form { (a, b) | a < b }. That graph is acyclic, and yet DFS would be O(n!) – FryGuy Feb 25 '09 at 3:04
show 3 more comments

4 Answers

up vote 32 down vote accepted

I would try to sort the graph topologically, and if you can't, then it has cycles.

share|improve this answer
2  
How did this have no votes?? It's linear on nodes + edges, far superior to the O(n^2) solutions! – Loren Pechtel Feb 25 '09 at 2:52
I just answered it :) – FryGuy Feb 25 '09 at 2:59
1  
In many cases, a DFS (see J.Conrod's answer) may be easier, especially if a DFS needs to be performed anyway. But of course this depends on the context. – sleske Sep 30 '09 at 15:41

Doing a simple depth-first-search is not good enough to find a cycle. It is possible to visit a node multiple times in a DFS without a cycle existing. Depending on where you start, you also might not visit the entire graph.

You can check for cycles in a connected component of a graph as follows. Find a node which has only outgoing edges. If there is no such node, then there is a cycle. Start a DFS at that node. When traversing each edge, check whether the edge points back to a node already on your stack. This indicates the existence of a cycle. If you find no such edge, there are no cycles in that connected component.

As Rutger Prins points out, if your graph is not connected, you need to repeat the search on each connected component.

As a reference, Tarjan's strongly connected component algorithm is closely related. It will also help you find the cycles, not just report whether they exist.

share|improve this answer
1  
BTW: An edge that "points back to a node already on your stack" is often called a "back edge" in the literature, for obvious reasons. And yes, this may be simpler than sorting the graph topologically, especially if you need to do a DFS anyway. – sleske Sep 30 '09 at 15:40
For the graph to be acyclic, you say that each connected component must contain a node with only outgoing edges. Can you recommend an algorithm to find the connected components (as opposed to "strongly" connected components) of a directed graph, for use by your main algorithm? – kostmo Sep 21 '10 at 4:17
@kostmo, if the graph has more than one connected component, then you will not visit all the nodes in your first DFS. Keep track of the nodes you've visited, and repeat the algorithm with unvisited nodes until you reach them all. This is basically how a connected components algorithm works anyway. – Jay Conrod Sep 22 '10 at 1:07
1  
While the intent of this answer is correct, the answer is confusing if using a stack-based implementation of DFS: the stack used to implement DFS will not contain the correct elements to test against. It's necessary to add an additional stack to the algorithm used to keep track of the set of ancestor nodes. – Theodore Murdock Apr 2 '12 at 21:18

Lemma 22.11 on the Book Introduction to Algorithms (Second Edition) states that:

"A directed graph G is acyclic if and only if a depth-first search of G yields no back edges"

share|improve this answer
1  
This is basically just an abbreviated version of Jay Conrod's answer :-). – sleske Sep 30 '09 at 15:52
One of the problems from the same book seems to suggest there is a |V| time algorithm. It is answered here: stackoverflow.com/questions/526331/… – Justin Mar 13 '11 at 21:12

The solution given by ShuggyCoUk is incomplete because it might not check all nodes.


def isDAG(nodes V):
    while there is an unvisited node v in V:
        bool cycleFound = dfs(v)
        if cyclefound:
            return false
    return true

This has timecomplexity O(n+m) or O(n^2)

share|improve this answer
mine is indeed incorrect - I deleted it though so your's now seems a little out of context – ShuggyCoUk Feb 25 '09 at 8:35
1  
O(n+m) <= O(n+n) = O(2n), O(2n) != O(n^2) – Artru Dec 13 '11 at 5:35

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.