资源简介
人工智能重力四子棋的AI,α-β剪枝实现。效果很不错。

代码片段和文件信息
#include “Judge.h“
bool userWin(const int x const int y const int M const int N int* const* board){
//横向检测
int i j;
int count = 0;
for (i = y; i >= 0; i--)
if (!(board[x][i] == 1))
break;
count += (y - i);
for (i = y; i < N; i++)
if (!(board[x][i] == 1))
break;
count += (i - y - 1);
if (count >= 4) return true;
//纵向检测
count = 0;
for (i = x; i < M; i++)
if (!(board[i][y] == 1))
break;
count += (i - x);
if (count >= 4) return true;
//左下-右上
count = 0;
for (i = x j = y; i < M && j >= 0; i++ j--)
if (!(board[i][j] == 1))
break;
count += (y - j);
for (i = x j = y; i >= 0 && j < N; i-- j++)
if (!(board[i][j] == 1))
break;
count += (j - y - 1);
if (count >= 4) return true;
//左上-右下
count = 0;
for (i = x j = y; i >= 0 && j >= 0; i-- j--)
if (!(board[i][j] == 1))
break;
count += (y - j);
for (i = x j = y; i < M && j < N; i++ j++)
if (!(board[i][j] == 1))
break;
count += (j - y - 1);
if (count >= 4) return true;
return false;
}
bool machineWin(const int x const int y const int M const int N int* const* board){
//横向检测
int i j;
int count = 0;
for (i = y; i >= 0; i--)
if (!(board[x][i] == 2))
break;
count += (y - i);
for (i = y; i < N; i++)
if (!(board[x][i] == 2))
break;
count += (i - y - 1);
if (count >= 4) return true;
//纵向检测
count = 0;
for (i = x; i < M; i++)
if (!(board[i][y] == 2))
break;
count += (i - x);
if (count >= 4) return true;
//左下-右上
count = 0;
for (i = x j = y; i < M && j >= 0; i++ j--)
if (!(board[i][j] == 2))
break;
count += (y - j);
for (i = x j = y; i >= 0 && j < N; i-- j++)
if (!(board[i][j] == 2))
break;
count += (j - y - 1);
if (count >= 4) return true;
//左上-右下
count = 0;
for (i = x j = y; i >= 0 && j >= 0; i-- j--)
if (!(board[i][j] == 2))
break;
count += (y - j);
for (i = x j = y; i < M && j < N; i++ j++)
if (!(board[i][j] == 2))
break;
count += (j - y - 1);
if (count >= 4) return true;
return false;
}
bool isTie(const int N const int* top){
bool tie = true;
for (int i = 0; i < N; i++)
{
if (top[i] > 0)
{
tie = false;
break;
}
}
return tie;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 503 2013-06-07 16:52 Point.h
文件 15372 2013-06-10 05:26 Strategy.cpp
文件 4383 2013-06-10 05:23 Strategy.h
文件 2730 2013-06-07 16:52 Judge.cpp
文件 2517 2013-06-07 16:52 Judge.h
----------- --------- ---------- ----- ----
25505 5
- 上一篇:基于LabVIEW的秒表设计
- 下一篇:LabVIEW 的交通灯 程序
相关资源
- cc2541 BLE DEMO
- Apolipoprotein E4 Impairs in vivo Hippocampal
- railroad铁路CAD生成
- 黑白棋(带简单AI)
- HDD repair.rar
- 利用foxmail模板批量生成邮件
- 简易绘图的制作 (一)WPF
- tsai经典两步法 很不错的
- LSI RAID配置手册(图文)
- jmail组件 v4.3
-
解决安装vs2012后vs2010 li
nk : fatal er - Anti-biofilm Activity of Resveratrol and Ursol
- In vitro screening of lactobacilli with antago
- libaio-0.3.107-10.el6.x86_64.rpm
- spaceclaim教程
- app inventor小游戏打地鼠.aia
- app inventor 应用街景地图.aia
- pzs_44217116_06.aia
- 四大RAID存储详解
- Symantec Brightmail AntiSpam产品手册
- 昆腾数据备份解决方案增强AIG对萨班
- DataNumen Excel Repair Excel文件修复工具
- HP Kayak高性能PC选择Adaptec RAID解决方案
- Adaptec 4805SAS RAID控制器
- Xyratex欲部分收购Ario的RAID代码
- E5404E 4Gb FC-SATA-II RAID产品手册
- An investigation into the effect of maize prod
- LSI逻辑率先验证SAS RAID-ON-CHIP/RAID 解决
- Jetson-TX2多声卡实现同时录音与播放
- pACTERT-TRAIL对涎腺腺样囊性癌SACC-83
评论
共有 条评论