Discussion of week 5 topics

Uninformed search

Uninformed search

by osman 192-15-2776 -
Number of replies: 0

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:

  1. Breadth-first Search
  2. Depth-first Search
  3. Depth-limited Search
  4. Iterative deepening depth-first search
  5. Uniform cost search
  6. Bidirectional Search