Minimax algorithm
问题 I have a simple question regarding the Minimax algorithm: for example for the tic-tac-toe game, how do I determine the utility function's for each player plays? It doesn't do that automatically, does it? I must hard-code the values in the game, it can't learn them by itself, does it? 回答1: No, a MiniMax does not learn. It is a smarter version of a brute-force tree search. 回答2: Typically you would implement the utility function directly. In this case the algorithm would not learn how to play