棋類遊戲的AI

//極大值極小值算法的僞代碼 int MinMax(node, depth, isMaxplayer) { if (depth == 0) { return Evaluate(node); } int score = isMaxPlayer ? -INFINITY : INFINITY;//條件?結果1:結果2;//條件成立就是結果1// for_each(node的子節點chil
相關文章
相關標籤/搜索