带/不带 Alpha-Beta 剪枝的 Minimax 算法

发布于 2024-10-01 01:56:07 字数 52 浏览 3 评论 0原文

带有 alpha-beta 剪枝的极小极大算法能否产生与没有剪枝的极小极大算法不同的答案?

Can the minimax algorithm with alpha-beta pruning yield a different answer than minimax without pruning?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

世界和平 2024-10-08 01:56:12

(a) 部分:在下面的树上应用 MiniMax 算法而不使用 Alpha Beta 剪枝,并找到空节点的相应值。
05 标记

部分 (b):在以下树上应用带有 Alpha Beta 剪枝的 MiniMax 算法,并找到空节点的相应值。在修剪过的边缘上画一条线。
15 分

Part (a): Apply MiniMax Algorithm without using Alpha Beta Pruning on the following tree and find the respective values of empty Nodes.
05 Marks

Part (b): Apply MiniMax Algorithm with Alpha Beta Pruning on the following tree and find the respective values of empty Nodes. Draw a line cut on the edges which are pruned.
15 Marks

帅冕 2024-10-08 01:56:10

Wikipedia 说:

Alpha-beta 剪枝是一种合理的优化,因为它不会改变分数它优化的算法的结果。

因此,不会改变。但具体实现可能会有所不同。

Wikipedia says:

Alpha-beta pruning is a sound optimization in that it does not change the score of the result of the algorithm it optimizes.

So, the value does not change. But the concrete realization of it can be different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文