A graph search algorithm which explores a graph by expanding the most promising node chosen according to a specified rule. It uses a priority queue to select the next node to visit based on a heuristic cost.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20