Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 493 Bytes

File metadata and controls

5 lines (3 loc) · 493 Bytes

ArrayAdjacencyGraph

The {{ArrayAdjacencyGraph<TVertex, TEdge>}}, also known as adjacency list provides an efficient readonlydata structure to access the out edges of a vertex. This class is serializable, cloneable and can be constructed in many different ways. Internally, the data structure keeps a dictionary from TVertex to an unordered array of TEdge elements.

See also AdjacencyGraph.