Data Structures and Algorithms with Object-Oriented Design Patterns in C#
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_inline71078 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).

   figure50784
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_inline71078, 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 property of the AbstractGraph class. This property provides a bool-valued get accessor that returns true if the graph is cyclic. The implementation uses a visitor that counts the number of vertices visited during a TopologicalOrderTraversal of the graph.

   program50954
Program: AbstractGraph class IsCyclic property.

The worst-case running time of the IsCyclic property is determined by the time taken by the TopologicalOrderTraversal. Since tex2html_wrap_inline60481, the running time of IsCyclic is tex2html_wrap_inline70626 when adjacency matrices are used to represent the graph and tex2html_wrap_inline70822 when adjacency lists are used.


next up previous contents index

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