In Artificial Intelligence, Uninformed search is a type of search algorithm that operated in brute force way. Uninformed search algorithms are also called as a blind search algorithm because these do not have any domain-specific knowledge other than how to traverse a tree. The following are the types of uninformed search strategies:
- Breadth-first search (BFS)
- Depth-first search (DFS)
- Iterative depth-first search
- Depth limited search
- Uniform cost search
- Bidirectional search