Difference between blind search and heuristic search in artificial intelligence
Answers
Answered by
11
Heyy Folk Here is your answer........
Check it out.......
____________________________________
Blind Search-:
Blind Search- is also called as unknown or uninformed search. A blind Search- have no information , as like u r searching about something , and u don't know anything about what u are searching this is called a blind Search-
-------------------------------------------------------------
Heuristic Search-:
A heuristic is a method of solving problems more easily and fastly where a another methods take much time.
____________________________________
I hope my answer helped u........
Thanx for seeing my answer.
Check it out.......
____________________________________
Blind Search-:
Blind Search- is also called as unknown or uninformed search. A blind Search- have no information , as like u r searching about something , and u don't know anything about what u are searching this is called a blind Search-
-------------------------------------------------------------
Heuristic Search-:
A heuristic is a method of solving problems more easily and fastly where a another methods take much time.
____________________________________
I hope my answer helped u........
Thanx for seeing my answer.
Answered by
1
Answer:
A blind such is usually uninformed. that is, it doesnt have any specific knowledge about the problem whereas a heuristic search is that which has information about the problem and therefore uses logic in decision making
Explanation:
Blind search: because it lacks any domain-specific information, it is purely brutish in nature.
- It takes a very long time.
- Uninformed or Brute Force search are other names for it.
- It uses a lot of memory.
- The search process keeps track of any undesirable nodes that serve no purpose in the search process.
- It doesn't employ a unique search function.
Examples include depth-first and breadth-first searches.
Heuristic searches:
- they carry out the search using domain-specific knowledge.
- The search process is sped up by using heuristics.
- We refer to this as informed search.
- In this kind of search, no time is lost.
- There isn't much RAM used.
- For searching, heuristic functions are employed
#SPJ2
Similar questions