| Class | Description |
|---|---|
| AdjGraph<V,W extends java.lang.Number> | |
| MapGraph<V,W extends java.lang.Number> |
Graph that uses HashMap for vertices and edges
More specifically it utilizes a Map containing all the vertices mapped to all their edges Technically this version of the graph combine the fast adding/removing of the edges of the Matrix implementation, with the low memory and fast adding/removing of vertices of the Linked List implementation. This happen if the HashMap is not reallocated. |
| MatrixGraph<V,W extends java.lang.Number> |