搜索资源列表
8x8
- 8*8点阵,贪吃蛇游戏,C语言编辑,易懂-8* 8 dot matrix, Snake game, C language editor, easy to understand
eightqueens
- 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。 -8X8 grid in the display of the chess Queen eight, making it unable to attack each other, that is, any two can not be Queen' s in the same line, same column or on the same slash and a
Game_Platform
- This is game platform with 8x8 Led matrix display. Now for this prototype is written simple PingPong game with 6 levels. It s cheep and quite powerful platform to learn game programming for embeded devices :) Platform have one 4 way jostic ant 2 acti
eluosifangkuai
- 俄罗斯方块,8x8点阵,汇编编写,代码精简-Tetris, 8x8 dot matrix, assembly preparation, streamlined code
8x8
- 8*8点阵做的贪吃蛇。希望大家喜欢哦。多多支持我。后续还有好的东西一定上传和大家分享-dasdfadsfdfasdfasdff
horse
- :将马随机放在国际象棋的8X8棋盘Bo阿rd[0..7,0..7]的某个方格中,马按走棋规则进行移动。 要求每个方格上只进入一次,走遍棋盘上全部64个方格。编制非递归程序,求出马的行走路线 ,并按求出的行走路线, 将数字1,2,…,64依次填入8X8的方阵输出之。- The horses were placed in the 8X8 chess board Bo A rd [0 .. 7,0 .. 7] of a box, the horse to move according to
snake
- this schématic is a simple Snake game based on PIC 18F4520 and a 4 matrix 8x8
bahuanghou
- 八皇后:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-8 queens: in 8 X8 s international chess placed on eight queen, to make it can t attack each other, that is, any two queen not at all with one line, one and the same column or the same
Eight_Queens
- 八皇后问题 C++版本 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight Queens
eight-queen-problem
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight queens problem is an old and well-known problems, backtracking algorithm is a typical example. The problem is that the famous 19th
chessboard
- 在黑白棋小游戏中画8X8棋盘,棋盘随ui窗口变化始终是正方形-In the black white games draw 8 x 8 board, the board change with the UI window is always a square
eight-queens-problem
- 解决八皇后问题:即在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Solve the eight queens problem: that is placed on a 8X8 grid chess eight Queen, so that it can not attack each other, that is, any two Queens are not in the same line, same column
Eight_Queens
- 八皇后问题 C++版本 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight Queens
ZYWReversi
- 本源码是一个用才c#开发的黑白棋游戏源码,期盼规格为8x8,游戏分为黑棋和白棋各执一方,双方交替落子,如两边被对方棋子包住,则变成对方棋子,最终以占据棋盘上点多者为胜。-this is a game
eight-queens-problem
- 解决八皇后问题:即在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Solve the eight queens problem: that is placed on a 8X8 grid chess eight Queen, so that it can not attack each other, that is, any two Queens are not in the same line, same column
Eight_Queens
- 八皇后问题 C++版本 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight Queens
maze-game
- 一个用C语言写的迷宫游戏 定义一个8*8的格子,这64个格子是人物可以移动到的位置;障碍物定义为两个相邻格子之间的挡板,0或1两种状态。类似上述方法,可以定义整个迷宫的布局,64个格子,对应数目的挡板,迷宫出口,迷宫入口,小人,这些元素。 文件里,需要存储迷宫大小,挡板位置,出口,入口。 小人在任一位置,可以向四个方向移动,有挡板则可以移动,没挡板则不可以移动。 最优路径的提示,使用A星路径算法去做,实质是一个启发式广度优先遍历。-A written in C language