Graph::Traversal::DFS - depth-first traversal of graphs |
Graph::Traversal::DFS - depth-first traversal of graphs
use Graph; my $g = Graph->new; $g->add_edge(...); use Graph::Traversal::DFS; my $d = Graph::Traversal::DFS->new(%opt); $d->dfs; # Do the traversal.
With this class one can traverse a Graph in depth-first order.
The callback parameters %opt are explained in the Graph::Traversal manpage.
The following methods are available:
the Graph::Traversal manpage, the Graph::Traversal::BFS manpage, the Graph manpage.
Graph::Traversal::DFS - depth-first traversal of graphs |