Click or drag to resize
SymbolDigraph Constructor
Initializes a digraph from a file using the specified delimiter. Each line in the file contains the name of a vertex, followed by a list of the names of the vertices adjacent to that vertex, separated by the delimiter.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public SymbolDigraph(
	string filename,
	string delimiter
)

Parameters

filename
Type: SystemString
the name of the file
delimiter
Type: SystemString
the delimiter between fields
See Also