Interface | Description |
---|---|
Graph |
A common interface for the Graph ADT, encompassing graphs both unweighted and
weighted, undirected and directed.
|
UnweightedGraph |
An interface for unweighted graphs.
|
WeightedGraph |
An interface for weighted graphs.
|
Class | Description |
---|---|
CarlUnweightedGraph |
An implementation of the Unweighted Graph ADT.
|
CarlWeightedGraph |
An implementation of the Weighted Graph ADT.
|