Ask a Question

compare between heuristic and non heuristic searching principles.

on 2013-12-08 14:21:59   by Amit   on MCA  1 answers

Rajni

on 2013-12-10 10:30:00  

Heuristic search algorithms have knowledge of where the goal or finish of the graph. For example, in a maze, they would know which path leads in the direction of the goal. Blind search algorithms have no knowledge of where the goal is, and wander "blindly" through the graph. Blind search techniques include Breadth-first, Depth-first search, etc. Heuristic search techniques include Best-first, A* etc.