Breadth-first heuristic search

作者:

Highlights:

摘要

Recent work shows that the memory requirements of A* and related graph-search algorithms can be reduced substantially by only storing nodes that are on or near the search frontier, using special techniques to prevent node regeneration, and recovering the solution path by a divide-and-conquer technique. When this approach is used to solve graph-search problems with unit edge costs, we show that a breadth-first search strategy can be more memory-efficient than a best-first strategy. We also show that a breadth-first strategy allows a technique for preventing node regeneration that is easier to implement and can be applied more widely. The breadth-first heuristic search algorithms introduced in this paper include a memory-efficient implementation of breadth-first branch-and-bound search and a breadth-first iterative-deepening A* algorithm that is based on it. Computational results show that they outperform other systematic search algorithms in solving a range of challenging graph-search problems.

论文关键词:Heuristic search,Memory-limited graph search,Branch-and-bound search,Planning

论文评审过程:Received 1 December 2004, Revised 13 December 2005, Accepted 13 December 2005, Available online 20 February 2006.

论文官网地址:https://doi.org/10.1016/j.artint.2005.12.002