文件名称:PlantomGo幻影围棋源程序
文件大小:2.22MB
文件格式:RAR
更新时间:2013-11-26 09:04:05
源程序 围棋 计算机博弈
#define GRID_NUM 11 //棋盘行数,其中1..9为棋的坐标,其他为边界 #define GRID_COUNT 81 //可放棋子总数 #define BLACK 1 //黑棋 黑白棋转换时,可对求异或 #define WHITE 2 //白棋 #define BORDER 3 //边界 #define NOSTONE 0 //空子无棋 #define MCMAX 10000 //蒙特卡洛次数 typedef struct _stoneposition { char x; char y; int score; }SMove; //招法 char board[GRID_NUM][GRID_NUM]; //棋盘表示 char chessColor; //自己棋的颜色 SMove bestMove; //最优棋
【文件预览】:
PlantomGo幻影围棋源程序
----PlantomGo概要设计.doc(30KB)
----PlantomGo.ncb(9.33MB)
----PlantomGo.suo(27KB)
----PlantomGo概要设计01.doc(33KB)
----release()
--------PlantomGo.pdb(219KB)
--------PlantomGo.exe(16KB)
----PlantomGo.sln(892B)
----debug()
--------PlantomGo.pdb(443KB)
--------PlantomGo.ilk(352KB)
--------PlantomGo.exe(60KB)
----PlantomGo()
--------Main.cpp(9KB)
--------PlantomGo.vcproj.ARTHUR.Arthur.user(1KB)
--------Engine.cpp(317B)
--------Define.h(1KB)
--------Define.cpp(671B)
--------MonteCarlo.cpp(8KB)
--------Debug()
--------Engine.h(395B)
--------SetScore.cpp(10KB)
--------Release()
--------PlantomGo.vcproj.SSC.sschu.user(1KB)
--------PlantomGo.vcproj(4KB)