Algorithm::Functional::BFS

A functional approach to the breadth-first search algorithm
Download

Algorithm::Functional::BFS Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Colin Wetherbee
  • Publisher web site:
  • http://search.cpan.org/~cww/

Algorithm::Functional::BFS Tags


Algorithm::Functional::BFS Description

Algorithm::Functional::BFS is a functional approach to the breadth-first search algorithm.This implementation supports both cyclic and acyclic graphs but does not support edge or vertex weighting.SYNOPSIS use Algorithm::Functional::BFS; # Create your object. my $bfs = Algorithm::Functional::BFS->new ( adjacent_nodes_func => $some_func, victory_func => $some_other_func, ); # Get a list (ref) of all the routes from your start node to the node(s) # that satisfy the victory condition. my $routes_ref = $bfs->search($start_node);Product's homepage


Algorithm::Functional::BFS Related Software