ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

圈叉棋 Tic Tac Toe实现与AI分析

2021-01-26 18:33:36  阅读:356  来源: 互联网

标签:move AI there step spaces Tac go 圈叉棋 Tic


简介

井字棋 圈叉棋 Tic Tac Toe
在这里插入图片描述

原理

用数组代表棋子的位置,可以1x9也可以3x3

判断胜利

井字棋有八种胜利的方式,三横三竖两对角线,逐个遍历即可判定是否胜利,参考一就是遍历六次加上对角线,个人觉得参考三的七个or更优美简洁一点吧。

AI算法

算法思路在书上写的很明白

The AI’s algorithm will have the following steps:

  1.  First, see if there’s a move the computer can make that will win the game. If there is, take that move. Otherwise, go to step 2.
    
  2.  See if there’s a move the player can make that will cause the computer to lose the game. If there is, move there to block the player. Otherwise, go to step 3.
    
  3.  Check if any of the corner spaces (spaces 1, 3, 7, or 9) are free. If so, move there. If no corner piece is free, then go to step 4.
    
  4.  Check if the center is free. If so, move there. If it isn’t, then go to step 5.
    
  5.  Move on any of the side pieces (spaces 2, 4, 6, or 8). There are no more steps, because if the execution reaches step 5 the side spaces are the only spaces left.
    

参考

标签:move,AI,there,step,spaces,Tac,go,圈叉棋,Tic
来源: https://blog.csdn.net/weixin_43031092/article/details/113139907

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有