文件名称:Chess
- 所属分类:
- 其他小程序
- 资源属性:
- [Windows] [Visual C] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 1.78mb
- 下载次数:
- 0次
- 提 供 者:
- w**
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
本人机对弈程序采用了多种搜索算法.以下是本程序主要的类说明:
1.CEveluation类:估值类,对给定的棋盘进行估值.
2.CMoveGenerator类:走法产生器,对给定的棋盘局面搜索出所有可能的走法.
3.CSearchEngine类:搜索引擎基类.
4.CNegaMaxEngine类:负极大值法搜索引擎.
5.CAlphaBetaEngine类:采用了Alpha-Beta剪枝技术的搜索引擎.
6.CFAlphaBetaEngine类:fail-softalpha-beta搜索引擎.
7.CHistoryHeuristic类:历史启发类.
8.CAlphabeta_HHEngine类:带历史启发的Alpha-Beta搜索引擎.
9.CAspirationSearch类:渴望搜索引擎.
10.CIDAlphabetaEngine类:迭代深化搜索引擎.
11.CMTD_fEngine类:MTD(f)搜索引擎.
12.CTranspositionTable类:置换表.
13.CAlphaBeta_TTEngine类:加置换表的Alpha-Beta搜索引擎.
14.CPVS_Engine类:极小窗口搜索引擎.
15.CNegaScout_TT_HH类:使用了置换表和历史启发的NegaScout搜索引擎.
本程序还具有悔棋,还原功能,还可以记录走法.-========================================================================
MICROSOFT FOUNDATION CLASS LIBRARY : Chess
========================================================================
AppWizard has created this Chess application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
This file contains a summary of what you will find in each of the files that
make up your Chess application.
Chess.dsp
This file (the project file) contains information at the project level and
is used to build a single project or subproject. Other users can share the
project (.dsp) file, but they should export the makefiles locally.
Chess.h
This is the main header file for the application. It includes other
project specific headers (including Resource.h) and declares the
CChessApp application class.
Chess.cpp
This is the main applica
1.CEveluation类:估值类,对给定的棋盘进行估值.
2.CMoveGenerator类:走法产生器,对给定的棋盘局面搜索出所有可能的走法.
3.CSearchEngine类:搜索引擎基类.
4.CNegaMaxEngine类:负极大值法搜索引擎.
5.CAlphaBetaEngine类:采用了Alpha-Beta剪枝技术的搜索引擎.
6.CFAlphaBetaEngine类:fail-softalpha-beta搜索引擎.
7.CHistoryHeuristic类:历史启发类.
8.CAlphabeta_HHEngine类:带历史启发的Alpha-Beta搜索引擎.
9.CAspirationSearch类:渴望搜索引擎.
10.CIDAlphabetaEngine类:迭代深化搜索引擎.
11.CMTD_fEngine类:MTD(f)搜索引擎.
12.CTranspositionTable类:置换表.
13.CAlphaBeta_TTEngine类:加置换表的Alpha-Beta搜索引擎.
14.CPVS_Engine类:极小窗口搜索引擎.
15.CNegaScout_TT_HH类:使用了置换表和历史启发的NegaScout搜索引擎.
本程序还具有悔棋,还原功能,还可以记录走法.-========================================================================
MICROSOFT FOUNDATION CLASS LIBRARY : Chess
========================================================================
AppWizard has created this Chess application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
This file contains a summary of what you will find in each of the files that
make up your Chess application.
Chess.dsp
This file (the project file) contains information at the project level and
is used to build a single project or subproject. Other users can share the
project (.dsp) file, but they should export the makefiles locally.
Chess.h
This is the main header file for the application. It includes other
project specific headers (including Resource.h) and declares the
CChessApp application class.
Chess.cpp
This is the main applica
(系统自动生成,下载前可以参看下载内容)
下载文件列表
AlphaBetaEngine.cpp
AlphaBetaEngine.h
AspirationSearch.cpp
AspirationSearch.h
Chess.aps
Chess.cpp
Chess.dsp
Chess.dsw
Chess.exe
Chess.h
Chess.ncb
Chess.opt
Chess.plg
Chess.rc
ChessDlg.cpp
ChessDlg.h
CoolButton.cpp
CoolButton.h
Define.h
Eveluation.cpp
Eveluation.h
FAlphaBetaEngine.cpp
FAlphaBetaEngine.h
GradientProgressCtrl.cpp
GradientProgressCtrl.h
HelpDlg.cpp
HelpDlg.h
HistoryHeuristic.cpp
HistoryHeuristic.h
IDAlphabetaEngine.cpp
IDAlphabetaEngine.h
MemDC.cpp
MemDC.h
MoveGenerator.cpp
MoveGenerator.h
MTD_fEngine.cpp
MTD_fEngine.h
NegaMaxEngine.cpp
NegaMaxEngine.h
NegaScout_TT_HH.cpp
NegaScout_TT_HH.h
PVS_Engine.cpp
PVS_Engine.h
ReadMe.txt
resource.h
SearchEngine.cpp
SearchEngine.h
SetDlg.cpp
SetDlg.h
StdAfx.cpp
StdAfx.h
TranspositionTable.cpp
TranspositionTable.h
XPButton.cpp
XPButton.h
棋盘倒.bmp
棋盘正.bmp
调试.txt
Release\AlphaBetaEngine.obj
.......\Alphabeta_HH.obj
.......\AlphaBeta_TTEngine.obj
.......\AspirationSearch.obj
.......\Chess.exe
.......\Chess.obj
.......\Chess.pch
.......\Chess.res
.......\ChessDlg.obj
.......\CoolButton.obj
.......\Eveluation.obj
.......\FAlphaBetaEngine.obj
.......\GradientProgressCtrl.obj
.......\HelpDlg.obj
.......\HistoryHeuristic.obj
.......\IDAlphabetaEngine.obj
.......\MemDC.obj
.......\MoveGenerator.obj
.......\MTD_fEngine.obj
.......\NegaMaxEngine.obj
.......\NegaScout_TT_HH.obj
.......\PVS_Engine.obj
.......\SearchEngine.obj
.......\SetDlg.obj
.......\StdAfx.obj
.......\TranspositionTable.obj
.......\vc60.idb
.......\XPButton.obj
res\bitmap1.bmp
...\bmp00001.bmp
...\box1.ico
...\BOX2.ico
...\cancle.bmp
...\cantgo.cur
...\Chess.ico
...\Chess.rc2
...\cut.ico
...\hand.cur
...\Help GID.ico
...\ico00001.ico
...\icon1.ico
...\icon2.ico
AlphaBetaEngine.h
AspirationSearch.cpp
AspirationSearch.h
Chess.aps
Chess.cpp
Chess.dsp
Chess.dsw
Chess.exe
Chess.h
Chess.ncb
Chess.opt
Chess.plg
Chess.rc
ChessDlg.cpp
ChessDlg.h
CoolButton.cpp
CoolButton.h
Define.h
Eveluation.cpp
Eveluation.h
FAlphaBetaEngine.cpp
FAlphaBetaEngine.h
GradientProgressCtrl.cpp
GradientProgressCtrl.h
HelpDlg.cpp
HelpDlg.h
HistoryHeuristic.cpp
HistoryHeuristic.h
IDAlphabetaEngine.cpp
IDAlphabetaEngine.h
MemDC.cpp
MemDC.h
MoveGenerator.cpp
MoveGenerator.h
MTD_fEngine.cpp
MTD_fEngine.h
NegaMaxEngine.cpp
NegaMaxEngine.h
NegaScout_TT_HH.cpp
NegaScout_TT_HH.h
PVS_Engine.cpp
PVS_Engine.h
ReadMe.txt
resource.h
SearchEngine.cpp
SearchEngine.h
SetDlg.cpp
SetDlg.h
StdAfx.cpp
StdAfx.h
TranspositionTable.cpp
TranspositionTable.h
XPButton.cpp
XPButton.h
棋盘倒.bmp
棋盘正.bmp
调试.txt
Release\AlphaBetaEngine.obj
.......\Alphabeta_HH.obj
.......\AlphaBeta_TTEngine.obj
.......\AspirationSearch.obj
.......\Chess.exe
.......\Chess.obj
.......\Chess.pch
.......\Chess.res
.......\ChessDlg.obj
.......\CoolButton.obj
.......\Eveluation.obj
.......\FAlphaBetaEngine.obj
.......\GradientProgressCtrl.obj
.......\HelpDlg.obj
.......\HistoryHeuristic.obj
.......\IDAlphabetaEngine.obj
.......\MemDC.obj
.......\MoveGenerator.obj
.......\MTD_fEngine.obj
.......\NegaMaxEngine.obj
.......\NegaScout_TT_HH.obj
.......\PVS_Engine.obj
.......\SearchEngine.obj
.......\SetDlg.obj
.......\StdAfx.obj
.......\TranspositionTable.obj
.......\vc60.idb
.......\XPButton.obj
res\bitmap1.bmp
...\bmp00001.bmp
...\box1.ico
...\BOX2.ico
...\cancle.bmp
...\cantgo.cur
...\Chess.ico
...\Chess.rc2
...\cut.ico
...\hand.cur
...\Help GID.ico
...\ico00001.ico
...\icon1.ico
...\icon2.ico