Cover Data Structures and Algorithms with Object-Oriented Design Patterns in Java
next up previous contents index

Testing for Cycles in a Directed Graph

The final application of graph traversal that we consider in this section is to test a directed graph for cycles. An easy way to do this is to attempt a topological-order traversal using the algorithm given in Section gif. This algorithm only visits all the vertices of a directed graph if that graph contains no cycles.

To see why this is so, consider the directed cyclic graph tex2html_wrap_inline70823 shown in Figure gif. The topological traversal algorithm begins by computing the in-degrees of the vertices. (The number shown below each vertex in Figure gif is the in-degree of that vertex).

   figure50567
Figure: A directed cyclic graph.

At each step of the traversal, a vertex with in-degree of zero is visited. After a vertex is visited, the vertex and all the edges emanating from that vertex are removed from the graph. Notice that if we remove vertex a and edge (a,b) from tex2html_wrap_inline70823, all the remaining vertices have in-degrees of one. The presence of the cycle prevents the topological-order traversal from completing.

Therefore, the a simple way to test whether a directed graph is cyclic is to attempt a topological traversal of its vertices. If all the vertices are not visited, the graph must be cyclic.

Program gif gives the implementation of the isCyclic method of the AbstractGraph class. This boolean-valued accessor returns true if the graph is cyclic. The implementation simply makes uses a visitor that counts the number of vertices visited during a topologicalOrderTraversal of the graph.

   program50736
Program: AbstractGraph class isCyclic method.

The worst-case running time of the isCyclic method is determined by the time taken by the topologicalOrderTraversal. Since tex2html_wrap_inline60212, the running time of isCyclic is tex2html_wrap_inline70371 when adjacency matrices are used to represent the graph and tex2html_wrap_inline70567 when adjacency lists are used.


next up previous contents index

Bruno Copyright © 1998 by Bruno R. Preiss, P.Eng. All rights reserved.