0
6.4kviews
Explain Hill-climbing algorithm with an example
1 Answer
| written 9.0 years ago by |
A* is an algorithm that:
– Uses heuristic to guide search
– While ensuring that it will compute a path with minimum cost

f(n) = g(n) + h(n)
– g(n) = “cost …