开发工具:
文件大小: 13mb
下载次数: 0
上传时间: 2011-06-01
详细说明: 有拼图游戏,几个可选 有人工智能论文 bestMove(int p, int*v) { int i; int lastTie; int lastMove; int subV; /*First, check for a tie*/ if (isTie()) { *v=0; return(0); }; /*If not a tie, try each potential move*/ for (*v=-1, lastTie=lastMove=-1,i=0;i<9;i++) { /*If this isn't a possible, skip it*/ if (board[i]!=0) continue; /* Make the move. */ lastMove=i ; board[i]=p; /* Did it win? */ if (hasWon(p)) *v=1; else{ /*If not, find out how good the other side can do*/ bestMove(-p,&subV); /* If they can only lose, this is still a win.*/ if (subV==-1) *v=1; /* Or, if it's a tie, remember it. */ else if (subV==0){ *v=0; lastTie=i; }; }; /* Take back the move. */ board[i]=0; /*If we found a win, return immediately (can't do any better than that)*/ if (*v==1) return(i); /*If we didn't find any wins, return a tie move.*/ if (*v==0) return(lastTie); /*If there weren't even any ties, return a loosing move.*/ else return(lastMove); }; ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.