Click or drag to resize
GraphGeneratorStar Method
Returns a star graph on V vertices.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static Graph Star(
	int V
)

Parameters

V
Type: SystemInt32
the number of vertices in the star

Return Value

Type: Graph
a star graph on V vertices: a single vertex connected to every other vertex
See Also