搜索资源列表
formula
- Optimization of 2 dimensional Labyrinth (Maze) representation for tiny memory
formula2
- Optimization of 2 dimensional Labyrinth (Maze) representation for tiny memory
formula3
- Optimization of 2 dimensional Labyrinth (Maze) representation for tiny memory
formula4
- Optimization of 2 dimensional Labyrinth (Maze) representation for tiny memory
formula5
- Optimization of 2 dimensional Labyrinth (Maze) representation for tiny memory
alisa3
- There is a labyrinth(matrix nxn)- . -empty # -complete.Find the distance between the most remote points of lab.-There is a labyrinth(matrix nxn)- .-empty #-complete.Find the distance between the most remote points of lab.
Game
- This a another game, and this game is a one labyrinth with obstacles.-This is a another game, and this game is a one labyrinth with obstacles.
MazePath
- 本程序可以实现从既定的迷宫当中选择一条可行的通路,迷宫也可以自行设计-This procedure can be established maze from which to choose a feasible path, the labyrinth can also design their own
Labyrinth
- c语言迷宫代码,实现了迷宫游戏所带有的相关功能-c language code maze, maze games has brought some related functions
20070221
- 灰鸽子源码加密解迷器-Gray pigeon labyrinth source encryption solution
labyrinth
- 自己写的一个迷宫算法,通过栈来中转。 开始的时候初始化一个迷宫,为了简单,只实现了算法,没有图形界面。-Wrote it myself, a maze algorithm to transit through the stack. The beginning of the initialization of a maze, for simplicity, only the realization of the algorithm, there is no graphical interfac
MazePath
- 程序目的: 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并显示在屏幕上。 -Procedure goal: inputs a random size the labyrinth, extracts one with the stack to go out the labyrinth the way, and demonstrates on the screen.
11111111
- 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并显示在屏幕上 -labyrinth
MazePath
- 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并 显示在屏幕上。 程序实现: 可以实现载入迷宫和保存迷宫,附带文件中有4个测试迷宫路径的 文件test1~4.dd。请将这些文件拷贝到TC当前目录下,或者在载 入时写明完全路径。-Enter a maze of any size, using the stack find a path out of the labyrinth, and displayed on the screen. Program implementa
migong
- 一个迷宫路径求解的设计与编写思路,该程序采用C语言编写,主要使用了非递归算法和数组的运用。-A labyrinth path for solving the design and preparation of ideas, the program using C language, the main use of non-recursive algorithm and array use.
maze
- 本程序中,以一个m×n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。迷宫数据输入的形式为一个以"回车符"为结束标志且允许出现重复字符-This program, with an m × n matrix, said the long labyrinth of 0 and 1, respectively, the maze of paths and obstacles. Maze of data input in the form of a " carriage return&quo
labyrinth
- 求解方法是:从入口出发,顺某个方向走,若能过去,继续;否则,沿着原路返回,换方向继续走,直到所有可能的通路都被找到为止。-Solving method is: starting from the entrance, and to conform to a direction, if in the past, continue otherwise, along the same route back, changing direction to go, until all the possibl
box
- 一个小的迷宫游戏 汇编代码 用MASM和link调试过 可用-Labyrinth Game assembly code
migongchengxu
- 输入一个任意大小的迷宫,用栈求出一条走出迷宫的路径,并 显示在屏幕上。-Enter a maze of any size, using the stack find a path out of the labyrinth, and displayed on the screen.
migong
- 以一个Maze(m, n)的长方阵表示迷宫, 迷宫的入口是Maze(1,1), 出口是Maze(m, n), Maze(i,j)等于0表示通路, Maze(i,j)等于1表示障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。各个命令以及相关数据的输入格式如下: 输入迷宫:C,接下来一行是m n,其中m是迷宫矩阵行数,n是迷宫矩阵列数,接下来的m行数据是迷宫矩阵,每行n个值,表示一个m*n的迷宫矩阵 求迷宫的一条通路:Q 当输入的命令为E时,程序