Content deleted Content added
intro to uninformed search |
wikified uninformed intro, updated overall intro |
||
Line 2:
[[ja:検索]]
In [[computer science]], a '''search algorithm''', broadly speaking, is an [[algorithm]] that takes a problem as [[input]] and returns a solution to the problem. Most of the algorithms studied by computer scientists that solve problems are kinds of search algorithms. The set of all possible solutions to a problem is called the [[search space]]. [[Brute-force search]] or "naive"/uninformed search algorithms use the simplest, most intuitive method of searching through the search space, whereas informed search algorithms
== Uninformed Search ==
An uninformed search algorithm is one that does not take into account the specific nature of the problem. As such, they can be implemented in general, and then the same [[implementation]] can be used in a wide range of problems thanks to [[Abstraction (computer science)|abstraction]]. The drawback is that most [[search
=== List Search ===
|