Interface | Description |
---|---|
GeometricGraph<X extends Point_> |
Implementation of a geometric graph (generic and undirected)
|
Graph<V extends Node> |
Define the abstract data type for a graph (undirected, not weighted)
(explicit pointer-based representation of a graph)
|
Class | Description |
---|---|
AdjacencyListGraph<V extends Node> |
Pointer based implementation of an Adjacency List Representation of a graph
|
GeometricGraph_2 |
Implementation of a geometric graph, whose vertices correspond to 2D points
|
GeometricGraph_3 |
Implementation of a geometric graph, whose vertices correspond to 3D points
|
GraphBuilder | |
Node<X> |
A class for representing a node of a graph
|