Baseclasses
Definition
The class TriconnectivityTest represents the triconnectivity test algorithm according to Hopcroft and Tarjan [HT73]. It tests if a graph G is triconnected and returns a witness (cut vertex, separation pair) if not. There are no restrictions on the input graph G, i.e., G may contain multiple edges or self loops.
General Information
| Algorithm | |
| name | Triconnectivity Test |
| long name | Triconnectivity Test (Hopcroft/Tarjan) |
| author | J. E. Hopcroft, R. E. Tarjan |
| Implementation | |
| author | C. Gutwenger |
| date | Novembre 1998 |
| version | 1.0 |
Pre- and Postcondition
| precondition | = |
#include < AGD/TriconnectivityTest.h >
Creation
| TriconnectivityTest | T | creates an instance T of type TriconnectivityTest. |
Operations
Implementation
Testing a graph G = (V, E) for triconnectivity takes time
(| V| + | E|).
© Copyright 1998-2001, Algorithmic Solutions Software GmbH. All rights reserved.
2001-08-13