1. A search algorithm in computer science that explores a search space without using any heuristic information or domain knowledge to guide the search process
Breadth-first search is a common example of uninformed search that explores all nodes at the present depth level before moving to nodes at the next depth level.
A busca em largura é um exemplo comum de busca não informada que explora todos os nós no nível de profundidade atual antes de passar para os nós no próximo nível de profundidade.
2. A search strategy that does not take advantage of domain-specific knowledge or problem-specific information to determine which nodes to expand next
Unlike informed search, uninformed search does not use heuristics to estimate the cost of reaching the goal.
Diferentemente da busca informada, a busca não informada não utiliza heurísticas para estimar o custo de atingir o objetivo.