Package salvo.jesus.graph.algorithm

Class Summary
BreadthFirstTraversal A concrete subclass of GraphTraversal that uses breadth-first search in traversing a graph.
DepthFirstDirectedGraphTraversal A concrete subclass of GraphTraversal that uses depth-first search in traversing a directed graph.
DepthFirstGraphTraversal A concrete subclass of GraphTraversal that uses depth-first search in traversing a graph.
GraphTraversal Abstract class for an algorithm implementing graph traversal.
TopologicalSorting A concrete subclass of GraphTraversal that performs a topological sort against a directed acyclic graph.