Login
Remember
Register
Ask a Question
What is a uniform cost search algorithm in AI?
0
votes
asked
Oct 1, 2019
in
Artificial Intelligence
by
Robin
What is a uniform cost search algorithm in Artificial Intelligence?
uniform-cost-search
uniform-cost-search-algo
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 2, 2019
by
john ganales
The uniform cost search performs sorting in increasing the cost of the path to a node. It expands the least cost node. It is identical to BFS if each iteration has the same cost. It investigates ways in the expanding order of cost.
...