Uses of Interface
nick.graph.GraphInterface

Packages that use GraphInterface
nick.graph   
nick.graph.util   
 

Uses of GraphInterface in nick.graph
 

Classes in nick.graph that implement GraphInterface
 class AdjacencyListGraph<E>
          Let G = (V, E) be a simple weighted graph.
 class AdjacencyMatrixGraph<E>
          Let G = (V, E) be a simple weighted graph.
 

Uses of GraphInterface in nick.graph.util
 

Constructors in nick.graph.util with parameters of type GraphInterface
BreadthFirstSearch(GraphInterface<E> the_graph)
          Construct the BFS object.
DepthFirstSearch(GraphInterface<E> the_graph)
          Construct the DFS object.