GraphGeneratorEulerianCycle Method |
Returns an Eulerian cycle graph on V vertices.
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Graph EulerianCycle(
int V,
int E
)
Parameters
- V
- Type: SystemInt32
the number of vertices in the cycle - E
- Type: SystemInt32
the number of edges in the cycle
Return Value
Type:
Grapha graph that is an Eulerian cycle on
V vertices
and
E edges
Exceptions
See Also