0
4.5kviews
Explain A* Search.
1 Answer
1
175views

Minimizing the total estimated solution cost. The most widely known form of best first search is called $A^*$ search. It evaluates nodes by combining g(n), the cost to reach the node, and h(n), the cost to get from the node to the goal:

F(n) = g(n) + h(n)

Since g(n) …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.