You are on page 1of 6

CSE 860 Artificial Intelligence

(Infrastructure of Search Algos)

Dr. Yasar Ayaz


Head of Department
Department of Robotics and AI
SMME, NUST.

1
Each node n of the tree has 4 components
• n.State The state it indicates.
• n.Parent The node which generated it.
• n.Action Action applied to the Parent to
generate this node
• n.Path Cost Cost g(n) of the path from the
initial state to the current node
(based upon parent pointers)
2
• State vs. Node

3
4
• Frontier  Queue (or Stack)
EMPTY?(queue)
POP(queue)
INSERT(queue)
Types: FIFO, LIFO or Priority Queue
• Explored Set  Hash Tables of Symbol
Tables etc based upon the
nature of the problem
5
• Completeness

• Optimality

• Time Complexity

• Space Complexity

You might also like