- notifyBFSHasBegun() - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this Observer that
a Breadth-First Search has been initiated.
- notifyDFSHasBegun() - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this Observer that
a Depth-First-Search has been initiated.
- notifyDijkstraHasBegun() - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this observer that
Dijkstra's algorithm has begun.
- notifyDijkstraIsOver(List<V>) - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this observer that
Dijkstra's algorithm is over.
- notifyDijkstraVertexFinished(V, Integer) - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this observer that
a vertex has been added to the "Finished Set"
during Dijkstra's algorithm.
- notifySearchIsOver() - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this observer that
the search (either DFS or BFS) is over.
- notifyVisit(V) - Method in interface graph.GraphAlgorithmObserver
-
Called by the graph to notify this Observer that
a vertex is being "visited" during either DFS or BFS.