Click or drag to resize
AdjacencyListWeightedDirectedGraphTListOfAdjacentVertices Method
Returns a list containing the adjacent vertices of a given vertex in this graph in O(1).

Namespace: Slash.Collections.Graphs
Assembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntax
public List<T> ListOfAdjacentVertices(
	T node
)

Parameters

node
Type: T
Vertex to get the neighbors of.

Return Value

Type: ListT
List with the neighbors of the given vertex.

Implements

IWeightedGraphTListOfAdjacentVertices(T)
See Also