Depth-limited_search Depth-limited_search

Depth-limited search - Definition and Overview

Depth-limited search is a special case of the Depth-first search, where only nodes with depth not exceeding some bound are examined. Because of this property, the algorithm does not have the possibility of going down an infinite path. However, if the solution has a depth greater than the bound, the algorithm will miss it. As a result, the algorithm is suitable for problems where the solution is known to be no deeper than a certain bound, or at least where it is sufficiently likely to make using the algorithm worthwhile. A more sophisticated version of the algorithm is the Iterative deepening depth-first search, which repeatedly applies the depth-limited search with an increasing depth.

Copyright 2009 WordIQ.com - Privacy Policy  :: Terms of Use  :: Contact Us  :: About Us
This article is licensed under the GNU Free Documentation License. It uses material from the this Wikipedia article.