Windows mobile平台.Pocket knight 是一个与众不同的免费国际象棋游戏。它的规则非常有趣,和标准的国际象棋有很大差异,但并没有影响它的耐玩性,反而增添了许多乐趣
标签: Windows Pocket knight mobile
上传时间: 2014-01-05
上传用户:cainaifa
void knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS knight(i-2,j-1) //left knight(i-2,j+1) knight(i+2,j-1) //right knight(i+2,j+1) knight(i-1,j-2) //up knight(i+1,j-2) knight(i+1,j+2) //down knight(i-1,j+2) // board[i][j]=0 step-- }
上传时间: 2014-01-17
上传用户:cxl274287265
knight OPC Server Rapid Development Toolkits
标签: Development Toolkits knight Server
上传时间: 2017-04-13
上传用户:wsf950131
algorithm bfs to solve knight tour problem
标签: algorithm problem knight solve
上传时间: 2013-12-23
上传用户:qwe1234
knight s Tour Problem
上传时间: 2013-12-15
上传用户:weiwolkt
knight s Tour Implementation
标签: Implementation knight Tour
上传时间: 2017-08-30
上传用户:miaochun888
A demo for knight s Tour problem by Java applet
标签: problem knight applet demo
上传时间: 2014-12-01
上传用户:kr770906
解国际象棋骑士巡游问题的C++源代码,主程序为knight.c
上传时间: 2014-01-14
上传用户:yuanyuan123
用JAVA写的个种算法:排序,迷宫,巴斯卡(Pascal), ThreeColorFlags ,knight tour
上传时间: 2016-12-22
上传用户:invtnewer
This edition updates and continues the series of books based on the residential courses on radiowave propagation organised by the IEE/IET. The first course was held in 1974, with lectures by H. Page, P. Matthews, D. Parsons, M.W. Gough, P.A. Watson, E. Hickin, T. Pratt, P. knight, T.B. Jones, P.A. Bradley, B. Burgess and H. Rishbeth.
标签: Propagation Radiowaves edition 3rd of
上传时间: 2020-05-31
上传用户:shancjb