五子棋人机对弈代码——之贪心算法

/*五子棋游戏的游戏模块的实现 zwdnet 2010年3月 zwdnet@163.com */ #include <iostream.h> #include <vector> using namespace std; int X,Y; int colour; int N=15; //棋盘大小 typedef struct node { int x; int y; }POINT;
相关文章
相关标签/搜索