Algorithm
Development Kit 1.0

Package algs.model.searchtree.debug

Defines classes to support the debugging of search tree algorithms.

See:
          Description

Class Summary
AStarSearch Given an initial state and a target goal state, expand successors, always choosing to expand the node in the OPEN list whose evaluation is the smallest.
BreadthFirstSearch Given an initial state and a target goal state, expand in breadth-first manner all available moves until the target goal state is reached.
DepthFirstSearch Given an initial state, a target goal state, expand in depth-first manner all available moves until the target goal state is reached.
 

Package algs.model.searchtree.debug Description

Defines classes to support the debugging of search tree algorithms.


Algorithm Development Kit 1.0

This code supports the Algorithms in a Nutshell book, published by O'Reilly Media, Inc. in November 2008. Please visit the book web page to learn of any changes to the code repository or to record a potential defect.