ArrayBidirectionalGraph - KeRNeLith/QuikGraph GitHub Wiki
ArrayBidirectionalGraph
The ArrayBidirectionalGraph<TVertex, TEdge>
provides an efficient readonly data structure to access the out-edges and the in-edges of a vertex of sparse directed graphs.
This class is serializable, cloneable and can be constructed in many different ways. Internally, the data structure keeps a dictionary from TVertex
to a unordered array of TEdge
elements.
See also BidirectionalGraph.