Divide-and-Conquer Frontier Search Applied to Optimal Sequence Alignment

Abstract

We present a new algorithm that reduces the space complexity of heuristic search. It is most e ective for problem spaces that grow polynomially with problem size, but contain large numbers of short cycles. For example, the problem of nding an optimal global alignment ofseveral DNA or amino-acid sequences can be solved by nding a lowest-cost corner-to-corner path in a d-dimensional grid. A previous algorithm, called divide-and-conquer bidirectional search (Korf 1999), saves memory by storing only the Open lists and not the Closed lists. We show that this idea can be applied in a unidirectional search aswell. This extends the technique to problems where bidirectional search is not applicable, and is more e cient in both time and space than the bidirectional version. If n is the length of the strings, and d is the number of strings, this algorithm can reduce the memory requirement from O(n d) to O(n d;1). While our current implementation of DCFS is somewhat slower than existing dynamic programming approaches for optimal alignment of multiple gene sequences, DCFS is a more general algorithm 1

Cite

Text

Korf and Zhang. "Divide-and-Conquer Frontier Search Applied to Optimal Sequence Alignment." AAAI Conference on Artificial Intelligence, 2000.

Markdown

[Korf and Zhang. "Divide-and-Conquer Frontier Search Applied to Optimal Sequence Alignment." AAAI Conference on Artificial Intelligence, 2000.](https://mlanthology.org/aaai/2000/korf2000aaai-divide/)

BibTeX

@inproceedings{korf2000aaai-divide,
  title     = {{Divide-and-Conquer Frontier Search Applied to Optimal Sequence Alignment}},
  author    = {Korf, Richard E. and Zhang, Weixiong},
  booktitle = {AAAI Conference on Artificial Intelligence},
  year      = {2000},
  pages     = {910-916},
  url       = {https://mlanthology.org/aaai/2000/korf2000aaai-divide/}
}