TransitiveClosure Class |
The TransitiveClosure class represents a data type for computing the transitive closure of a digraph.
This implementation runs depth-first search from each vertex. The constructor takes time proportional to V(V + E) (in the worst case) and uses space proportional to V2, where V is the number of vertices and E is the number of edges.
For large digraphs, you may want to consider a more sophisticated algorithm. Nuutila proposes two algorithm for the problem (based on strong components and an interval representation) that runs in E + V time on typical digraphs.
Namespace: Algs4Net
public class TransitiveClosure
The TransitiveClosure type exposes the following members.
Name | Description | |
---|---|---|
![]() | TransitiveClosure | Computes the transitive closure of the digraph G. |
Name | Description | |
---|---|---|
![]() ![]() | MainTest |
Demo test the TransitiveClosure data type. |
![]() | Reachable |
Is there a directed path from vertex v to vertex w in the digraph? |
For additional documentation, see Section 4.2 of Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
This class is a C# port from the original Java class TransitiveClosure implementation by the respective authors.