Package org.jgrapht.alg.interfaces
Interface EulerianCycleAlgorithm<V,E>
-
- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
- All Known Implementing Classes:
HierholzerEulerianCycle
public interface EulerianCycleAlgorithm<V,E>
Computes an Eulerian cycle of an Eulerian graph. An Eulerian graph is a graph containing an Eulerian cycle.- Author:
- Dimitrios Michail
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphPath<V,E>
getEulerianCycle(Graph<V,E> graph)
Compute an Eulerian cycle of a graph.
-