Tag: search-algorithms
All the articles with the tag "search-algorithms".
Adversarial search - Playing Tic Tac Toe with the Minimax algorithm
Updated: at 17:26Minimax is a recursive algorithm that can be used by an AI to make decisions in games.
Informed search algorithms - Greedy best-first search and A* search
Updated: at 16:27An examination of the greedy best-first and A* search algorithms - two ways to do informed search.
The basics of search - Depth first vs breadth first search
Updated: at 06:46We approach a basics search problem and learn the difference between depth first search and breadth first search.