代码搜索:ChessBoard
找到约 642 项符合「ChessBoard」的源代码
代码结果 642
www.eeworm.com/read/168081/5448515
pas main.pas
unit Main;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls, ShellAPI,
Forms, Dialogs, Menus, Buttons, ExtCtrls, StdCtrls, Board,
Piece, Registry, ComCtrls, ToolW
www.eeworm.com/read/172707/9696078
java chesspoint.java
public class ChessPoint
{
int x,y;
boolean 有棋子;
ChessPiece piece=null;
ChessBoard board=null;
public ChessPoint(int x,int y,boolean boo)
{
this.x=x;
this.y=y;
www.eeworm.com/read/172058/9724983
cpp evaluate.cpp
#include
#include "Cdefines.h"
#include "Global.h"
#undef max
#undef min
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (((a) < (b)) ? (a) : (b))
#define TOLE
www.eeworm.com/read/172058/9724991
cpp treesearch.cpp
#include
#include "MainForm1.h"
#include "CDefines.h"
#include "Chess.h"
#include "Global.h"
#undef max
#undef min
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (
www.eeworm.com/read/172058/9725027
cpp mainform1.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "MainForm1.h"
#include "EditForm2.h"
#include "InfoForm3.h"
#include "
www.eeworm.com/read/172058/9725034
cpp movegener.cpp
#include "CDefines.h"
#include "Global.h"
/*
* 全局变量
*/
static ATTACKTABTYPE attack[308];
ATTACKTABTYPE *AttackTable = &attack[154];
SETOFPIECE BitTab[8] = {0, 1, 2, 4, 8, 0x10, 0x20, 0x4
www.eeworm.com/read/270095/11048814
cpp 棋盘覆盖问题.cpp
//棋盘覆盖问题
#include
int tile=1,board[64][64]={0};
void chessBoard(int tr,int tc,int dr,int dc,int size)
{
if (size==1) return;
int t=tile++, s=size/2; // L型骨牌顺序号, 分割棋盘
// 覆
www.eeworm.com/read/335579/12513358
java chesspoint.java
public class ChessPoint
{
int x,y;
boolean 有棋子;
ChessPiece piece=null;
ChessBoard board=null;
public ChessPoint(int x,int y,boolean boo)
{
this.x=x;
this.y=y;
www.eeworm.com/read/334779/12574043
h d_gqueen.h
#ifdef __BORLANDC__
// suppress the warning message about comparing signed and unsigned values
#pragma warn -8012
#endif // __BORLANDC__
#ifndef EIGHT_QUEENS_GRAPHICAL
#define EIGHT_QUEENS_GRAP
www.eeworm.com/read/237503/13947148
cpp main.cpp
/*
1 改进了DeadLock中的错误
2 添加了动态权值
*/
#include
#include
#include
#include
#include
#include
#include
#include "CMi