Discussion of week 5 topics

Uninformed search algorithm

Uninformed search algorithm

by Masud Parvez Pyiash 192-15-2827 -
Number of replies: 0

Breadth-first Search
Depth-first SearchDepth-limited SearchIterative deepening depth-first searchUniform cost searchBidirectional Search

Uninformed search is a class of general-purpose search algorithms which operates in brute force-way.

Uninformed search algorithms do not have additional information about state or search space other than how to traverse the tree, so it is also called blind search.

Following are the various types of uninformed search algorithms.