Class DirectedGraph<Vertex,Weight>

java.lang.Object
dsa.lab10.exercises.DirectedGraph<Vertex,Weight>
Type Parameters:
Vertex - the vertex type
Weight - the weight type (on the edges)
All Implemented Interfaces:
Container<Vertex>, Iterable<Vertex>

public class DirectedGraph<Vertex,Weight> extends Object implements Container<Vertex>
A directed graph implemented using adjacency lists.