【发布时间】:2016-12-14 05:53:19
【问题描述】:
如果我使用 4 行创建 5x5 tictactoe ai,最好使用什么算法。我们应该使用的原始算法是极小极大,但我们每轮只有 10 秒。
【问题讨论】:
-
使用 alpha-beta 和评估函数。将搜索树停止在深度为 5 或在那段时间内可能实现的任何目标。
-
谁开局就有制胜法宝。
标签: algorithm artificial-intelligence tic-tac-toe