Adversarial Search
Adversarial search is for games with an opponent who tries to make you lose. Chess, tic-tac-toe, Go. You cannot assume the other player will help. Minimax and alpha-beta live here. Chance games add dice (expectimax).
Not the same as finding a path on a map with no enemy. Say “opponent” in the first sentence.
Adversarial Search — output — three exam lines. Graph on paper first.
start
├── BFS queue
├── DFS stack
└── A* g+h
│
▼
goalExam tip
Why BFS is the wrong tool for chess.