0 votes
in Artificial Intelligence by
What is a uniform cost search algorithm in Artificial Intelligence?

1 Answer

0 votes
by
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.
...