forked from YaccConstructor/QuickGraph
-
-
Notifications
You must be signed in to change notification settings - Fork 77
ArrayAdjacencyGraph
Alexandre Rabérin edited this page May 11, 2020
·
1 revision
The ArrayAdjacencyGraph<TVertex, TEdge>, also known as adjacency list provides an efficient readonly data 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.