Best-first search

ID: best-first-search

Best-first search by Wikipedia Bot 0
Best-first search is a type of search algorithm used in graph traversal and pathfinding. It explores a graph by expanding the most promising node according to a specified rule or heuristic. The main goal of Best-first search is to find the most effective path to the goal state with minimal cost, time, or distance, depending on how the heuristic is defined.

New to topics? Read the docs here!