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

Given an undirected graph G=(V,E) with n vertices ( |V| = n ), how do you find if it contains a cycle in O(n) ?

share|improve this question

6 Answers

up vote 15 down vote accepted

I think that depth first search solves it. If an unexplored edge leads to a node visited before, then the graph contains a cycle. This condition also makes it O(n), since you can explore maximum n edges without setting it to true or being left with no unexplored edges.

share|improve this answer
right! I remembered it was something simple... Thanks a lot :) – Eran Kampf Feb 8 '09 at 21:02
1  
and if you go the breadth first search route, then an unexplored edge leading to a node "discovered" before, then the graph contains a cycle. BTW, IIRC the runtime of graph algorithms is usually described in terms of V and E. – ceretullis Feb 10 '09 at 1:04
Hmmm...this could devolve into an O(n^2) algorithm if you aren't careful, no? If you check for a node visited before by keeping all of the nodes in a linked list (new nodes to the end) then you'll have to scan your node list (the scan is O(n) in itself) on each check. Ergo - O(n^2). – Mark Brittingham Feb 10 '09 at 1:14
6  
If you mark each node, though, it is definitely O(n). – Mark Brittingham Feb 10 '09 at 2:25
1  
This condition is also known as a back edge. After running DFS, if the resulting DFS tree contains any back edges (an edge pointing to an ancestor in the tree), you know there's a cycle. This also works for a directed graph. – rahulmehta95 Nov 10 '12 at 18:46

Actually, depth first (or indeed breadth first) search isn't quite enough. You need a sightly more complex algorithm.

For instance, suppose there is graph with nodes {a,b,c,d} and edges {(a,b),(b,c),(b,d),(d,c)} where an edge (x,y) is an edge from x to y. (looks something like this, with all edges directed downwards.)

    (a)
     |
     |
    (b)
    / \ 
  (d)  |
   |   |
    \ /
    (c)

Then doing depth first search may visit node a, then b then c then backtrack to c then visit d and finally visit c again and conclude there is a cycle when there isn't. A similar thing happens with breadth first.

What you need to do is keep track of which nodes your in the middle of visiting. In the example above, when the algorithm reaches (d) it has finished visiting (c) but not (a) or (b). So revisiting a finished node is fine, but visiting an unfinished node means you have a cycle. The usual way to do this is colour each node white(not yet visited), grey(visiting descendants) or black(finished visiting).

here is some pseudo code!

define visit(node n):
  if n.colour == grey: //if we're still visiting this node or its descendants
    throw exception("Cycle found")

  n.colour = grey //to indicate this node is being visited
  for node child in n.children():
    if child.colour == white: //if the child is unexplored
      visit(child)

  n.colour = black //to show we're done visiting this node
  return

then running visit(root_node) will throw an exception if and only if there is a cycle (initially all nodes should be white).

Sorry if you knew all this already, it may well be what you meant by depth first search anyway, but I hope it helps.

share|improve this answer
The question was for an undirected graph, your example is a cycle in a undirected graph. – David Waters Feb 10 '09 at 16:13
Hah, so it is...Guess I should read things more carefully! – Anonymous Feb 10 '09 at 16:22
but still well answered and explained!! – user635614 Mar 2 '12 at 11:58
The if statement at line 2 is always false( check the if statement at line 7 ) – Rondogiannis Aristophanes Oct 8 '12 at 17:14
for a directed graph, run topological search. if it succeeded: no cycles. otherwise: cycles exist. – Alaa M. May 15 at 13:42

The answer is, really, breadth first search (or depth first search, it doesn't really matter). The details lie in the analysis.

Now, how fast is the algorithm?

First, imagine the graph has no cycles. The number of edges is then O(V), the graph is a forest, goal reached.

Now, imagine the graph has cycles, and your searching algorithm will finish and report success in the first of them. The graph is undirected, and therefore, the when the algorithm inspects an edge, there are only two possibilities: Either it has visited the other end of the edge, or it has and then, this edge closes a circle. And once it sees the other vertex of the edge, that vertex is "inspected", so there are only O(V) of these operations. The second case will be reached only once throughout the run of the algorithm.

share|improve this answer

By the way, if you happen to know that it is connected, then simply it is a tree (thus no cycles) if and only if |E|=|V|-1. Of course that's not a small amount of information :)

share|improve this answer

I believe that the assumption that the graph is connected can be handful. thus, you can use the proof shown above, that the running time is O(|V|). if not, then |E|>|V|. reminder: the running time of DFS is O(|V|+|E|).

share|improve this answer

An undirected graph without cycle has |E| < |V|-1.

public boolean hasCycle(Graph g) {

   int totalEdges = 0;
   for(Vertex v : g.getVertices()) {
     totalEdges += v.getNeighbors().size();
   }
   return totalEdges/2 > g.getVertices().size - 1;

}
share|improve this answer
1  
This doesn't seem right. First, did you mean <=? (A connected straight line 1-2-3-4-...-10 will always have |E|=|V|-1. And then, unless you restrict to fully connected, you can add any number of subgraphs to grow |E| slower than |V| and trick this test into missing a cycle. (I.e., If I add an edge A-B, I add 1 to |E| and 2 to |V|.) – Joshua Goldberg Feb 12 at 21:15
Forgive me for noting that your name is amusingly eponymous for this question! – Joshua Goldberg Feb 12 at 21:18
1  
In the the graph: A-B, B-C, A-C, D, E we have |V| = 5 and |E| = 3, so your condition holds 3 < 5 - 1, even tough it has the cycle A-B-C-A – pisaruk Feb 15 at 3:38

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.