IT:AD:NET:Libraries:QuickGraph:Concepts

  • IImplicitGraph defines a graph that contains information about the out-edges of a vertex.
    • This interface is particularly important when the size of your graph is infinite and you only have “local information”.

    * IIncidenceGraph extends IImplicitGraph by providing the out-edges count,

  • IVertexListGraph defines a graph that publishes the collection of vertices.
    • With this concept, one can iterate the vertices and access the out edges of each vertex.
    • This is an important concept that is used by many algorithms.

    * IEdgeListGraph defines a graph that publishes the collection of edges.

    • No information about out-edges is available.

    * IVertexAndEdgeListGraph merges IVertexListGraph and IEdgeListGraph functionalities

  • IBidirectionalGraph defines a vertex list graph that also publishes the in-edges.
    • Such graph can be used to explore a graph in a both directions.
  • /home/skysigal/public_html/data/pages/it/ad/quickgraph/concepts.txt
  • Last modified: 2023/11/04 03:30
  • by 127.0.0.1