Interface | Description |
---|---|
Graph<T> |
A graph which contains Vertices which store data and Edges.
|
UnweightedGraph<T> |
An unweighted graph which contains Vertices which store data and Edges.
|
UnweightedVertex<T> |
A vertex of an unweighted graph which stores some data
|
Weighted |
A weighted component of a graph
|
WeightedGraph<T> |
A weighted graph which contains Vertices which store data and Edges.
|
WeightedVertex<T> |
A vertex of a weighted graph which stores some data
|
Class | Description |
---|---|
Edge<T> |
An edge in a graph
|
GraphComponent |
A Vertex or Edge of a graph.
|
Vertex<T> |
A vertex of a graph which stores some data
|