Minimax is an algorithm where two players (min and max) play against each other for minimizing loss and maximizing gain. The following picture illustrates minimax with a game of tic-tac-toe. The algorithm uses a tree for the moves and scores of each player. In some cases, it isAᅵunnecessary for the algorithm to check certain subtrees. [...]
Advertisement
Categories