我正在尝试为一个简单的游戏实现 negamax,其中玩家交替将一两个添加到运行总和中。将总数增加到 21 的玩家获胜。
我在这里使用伪代码:https ://en.wikipedia.org/wiki/Negamax#Negamax_base_algorithm
人类玩家首先移动,因此计算机应该通过添加使总数等于 0 mod 3 的数字轻松获胜。
我没有做任何动态移动生成。只需将运行总和加 1 的 negamax 分数与运行总和加 2 的 negamax 分数进行比较。
int total = 0;
Console.WriteLine("the current total is " + total);
while (total < 21) {
Console.WriteLine("add 1 or 2?");
total += Convert.ToInt32(Console.ReadLine());
Console.WriteLine("you increased the total to " + total);
if (total == 21) {
Console.WriteLine("you win");
break;
}
if (negamax(total + 1, 1) > negamax(total + 2, 1)) total++;
else total += 2;
Console.WriteLine("computer increased the total to " + total);
if (total == 21) {
Console.WriteLine("computer wins");
break;
}
}
负最大函数:
static int negamax(int total, int color) {
if (total == 21) {
return color * 100;
}
int bestValue = -100;
for (int i = 1; i <= 2; i++) {
if (total + i <= 21) {
int v = -1 * negamax(total + i, -1 * color);
bestValue = max(bestValue, v);
}
}
return bestValue;
}
最大方法:
static int max(int a, int b) {
if (a > b) return a;
return b;
}
不知道为什么 AI 每次都加 2。