0
12kviews
Greedy Best First Search.
1 Answer
0
770views

Greedy Best – First Search tries to expand the node, i.e. closest to the goal, on the grounds that this is likely to lead to a solution quickly. Thus, it evaluates nodes by using just the heuristic function:

F(n) = h(n).

Let us see how this works for route. Finding …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.