DOC
2010-7-4[1]
By Willie Daniels,2015-01-29 06:53
32 views
0
// 000.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#define MAXSIZE 100
#define N 8
int board[8][8];
int HTry1[8]={-2,-1,1,2,2,1,-1,-2};
int HTry2[8]={1,2,2,1,-1,-2,-2,-1};
struct Stack{
int i;
int j;
..