Uninformed (Blind) Search
Uninformed search algorithms operate without any domain-specific knowledge about the problem. These algorithms do not use information such as the location of the goal or the proximity of states to the goal. Instead, they traverse the search tree systematically, evaluating nodes based solely on their position within the tree. This lack of guidance often results in brute-force exploration of the search space, examining every possible state until the goal is found.
Key Characteristics of Uninformed Search
No Heuristics: Relies purely on the structure of the search tree.
Exhaustive Exploration: Explores all possible nodes, making it complete but often inefficient.
General Applicability: Can solve any problem where the goal state can be identified.
Types of Uninformed Search Algorithms
Depth-limited Search (DLS)
Let's take a closer look at all these types.
Last updated