代码搜索:ChessBoard
找到约 642 项符合「ChessBoard」的源代码
代码结果 642
www.eeworm.com/read/237503/13947158
txt backup.txt
/*
1 改进了DeadLock中的错误
2 添加了启发函数的权值的设置
*/
#include
#include
#include
#include
#include
#include
#include
#includ
www.eeworm.com/read/203184/15364327
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/106328/15639759
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/389158/8546036
cpp keygameview.cpp
// KEYGameView.cpp : CKEYGameView 类的实现
//
#include "stdafx.h"
#include "KEYGame.h"
#include "KEYGameDoc.h"
#include "KEYGameView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CKE
www.eeworm.com/read/387182/8700792
cpp qipanfugai.cpp
#include
#include"resource.h"
int x1=89,x2=402;
int y1=91,y2=420;
int dx=39,dy=41;
int x,y; //画格
int grid[9][9]; //从1开始
int i=0,j=0
www.eeworm.com/read/382800/8999949
java chees.java
class Chess
{
public int tile=0;
//4*4的棋盘
int board [][]=new int [4][4];
public void chessBoard(int tr,int tc,int dr,int dc,int size)
{
if (size==1) return;
int t = tile++;
www.eeworm.com/read/382130/9047277
h autoputonechess.h
int Over_Extremum(int newValue, int extremum, int moreOrLess)
{
if (moreOrLess)
return (newValue>=extremum);
else return (newValue
www.eeworm.com/read/180383/9310639
cpp queens.cpp
#include
using namespace std;
class ChessBoard {
public:
ChessBoard(); // 8 x 8 chessboard;
ChessBoard(int); // n x n chessboard;
void findSolutions();
private:
www.eeworm.com/read/168082/9940127
cpp match.cpp
// Match.cpp: implementation of the CMatch class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "FiveChessServer.h"
#include "Match.h"
www.eeworm.com/read/363622/9942274
java five.java
/*
Five.java 2008 09 24
CopyRight umsoft.net
author liusy
*/
/**
这个程序是通过制表符拼成五子棋的棋盘
┏ ┳ ┓
┣ ╋ ┫
┗ ┻ ┛
只支持单机人与人对弈
通过输入行列数决定棋子位置
如:2,4
就代表 2行 4列 下一个棋子
*/
publ