BBFS (Binary Best-First Search)
BBFS, or Binary Best-First Search, is a search algorithm used in computer science and artificial intelligence. It is a variant of the more general <a href="https://www.wikiwhat.page/kavramlar/best-first%20search">Best-First Search</a> algorithm, but with some crucial differences that make it suitable for specific types of problems.
Core Idea: BBFS aims to find the optimal path from a start node to a goal node in a graph. Like Best-First Search, it uses a heuristic function to estimate the cost from any node to the goal node. The critical distinction is how it manages the open list (nodes to be explored).
Open List Management: Unlike standard Best-First Search, which typically uses a priority queue, BBFS maintains two open lists:
OPEN_BELOW
: Stores nodes with heuristic values below a certain threshold.OPEN_ABOVE
: Stores nodes with heuristic values above that threshold.Thresholding: The threshold is usually determined dynamically, often based on the best heuristic value encountered so far.
Iteration: The algorithm repeatedly expands the best node from OPEN_BELOW
. If OPEN_BELOW
is empty, the threshold is raised, and nodes are moved from OPEN_ABOVE
to OPEN_BELOW
. This process is called threshold raising.
Advantages:
Disadvantages:
Applications: BBFS has been applied in various fields, including:
In summary, BBFS is a valuable search algorithm that offers a trade-off between memory usage and efficiency, especially in domains with large search spaces and potential plateaus in the heuristic function.
Ne Demek sitesindeki bilgiler kullanıcılar vasıtasıyla veya otomatik oluşturulmuştur. Buradaki bilgilerin doğru olduğu garanti edilmez. Düzeltilmesi gereken bilgi olduğunu düşünüyorsanız bizimle iletişime geçiniz. Her türlü görüş, destek ve önerileriniz için iletisim@nedemek.page