HierholzerEulerianCycle instead@Deprecated public abstract class EulerianCircuit extends Object
| Constructor and Description |
|---|
EulerianCircuit()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static <V,E> List<V> |
getEulerianCircuitVertices(UndirectedGraph<V,E> g)
Deprecated.
This method will return a list of vertices which represents the Eulerian circuit of the
graph.
|
static <V,E> boolean |
isEulerian(UndirectedGraph<V,E> graph)
Deprecated.
Test whether a graph is Eulerian.
|
public static <V,E> boolean isEulerian(UndirectedGraph<V,E> graph)
V - the graph vertex typeE - the graph edge typegraph - the input graphpublic static <V,E> List<V> getEulerianCircuitVertices(UndirectedGraph<V,E> g)
V - the graph vertex typeE - the graph edge typeg - The graph to find an Eulerian circuitCopyright © 2017. All rights reserved.