CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 控制台(字符窗口)编程 搜索资源 - maze

搜索资源列表

  1. migong

    0下载:
  2. 利用深度搜索方法解决迷宫问题,迷宫的形状可以自由载入。-Search method to solve the maze using the depth of the problem, the shape of the maze are free to load.
  3. 所属分类:Console

    • 发布日期:2017-03-25
    • 文件大小:2336
    • 提供者:SKYMM
  1. migong

    0下载:
  2. 用VC++编的一个迷宫的程序,在迷宫中找到正确的路径。-VC++ code with a maze procedure, in the maze to find the right path.
  3. 所属分类:Console

    • 发布日期:2017-05-08
    • 文件大小:1915904
    • 提供者:xiaoleeyu
  1. labirynt

    0下载:
  2. Simple maze solver written in ansi c.
  3. 所属分类:Console

    • 发布日期:2017-04-10
    • 文件大小:1067
    • 提供者:Chris
  1. migong

    0下载:
  2. 迷宫游戏 用了一个网上拔得算法 可以每次进入游戏时自动生成不一样的迷宫-Maze game with an online pull algorithm to automatically generate a time into the game not the same maze
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:3433
    • 提供者:丁鹏
  1. duizhanexercise

    0下载:
  2. 堆栈练习,行编辑程序,迷宫求解,括号匹配检验,表达式求值-Stack practice, the line editor, maze solving, brace matching test, expression evaluation
  3. 所属分类:Console

    • 发布日期:2017-04-15
    • 文件大小:6662
    • 提供者:yu shan
  1. laoshu

    0下载:
  2. 老鼠走迷宫问题,通过算法求解找出所有的路径。感兴趣的同学可以-The Mouse Maze issues by solving algorithm to identify all the paths. Interested students can try
  3. 所属分类:Console

    • 发布日期:2017-12-07
    • 文件大小:803
    • 提供者:tom
  1. Provisions

    0下载:
  2. 一个迷宫游戏,在动态的过程中,一步一步尝试着寻找出路-A maze game, dynamicly looking for a way out
  3. 所属分类:Console

    • 发布日期:2017-12-09
    • 文件大小:74389
    • 提供者:陆依凝
  1. main

    0下载:
  2. 这是一个很简单的迷宫算法,逻辑清晰,易懂,内有具体解释说明,值得一看。-This is a algorithm of maze.It is easy to understand.
  3. 所属分类:Console

    • 发布日期:2017-12-03
    • 文件大小:1035
    • 提供者:DragonFly
  1. way

    0下载:
  2. 迷宫问题找迷宫的一条出路,o:通路; X:障碍-maze problem
  3. 所属分类:Console

    • 发布日期:2017-12-04
    • 文件大小:1810
    • 提供者:adroitboy
  1. migong

    0下载:
  2. 迷宫问题,程序根据用户选择的大小生成一个随机迷宫,由用户输入两组坐标分别作为迷宫的出口和入口,程序计算从出口到入口的所有路径,找到最短和最长路径并输出路径信息。-Maze problem, according to the user to select the size of the program generates a random maze, two sets of coordinates were entered by the user as the entrance and exit
  3. 所属分类:Console

    • 发布日期:2017-11-26
    • 文件大小:1694
    • 提供者:zs
  1. migong

    0下载:
  2. 用队列实现查找迷宫的通路,只要查找出一条通路即结束查找-Find a maze with a queue implementation path, just find out a path that is the end of the search
  3. 所属分类:Console

    • 发布日期:2017-04-06
    • 文件大小:2530
    • 提供者:朱鹏飞
  1. Stack

    0下载:
  2. 栈顺序定义,递归求解迷宫问题,栈和递归的建立和调用算法-Stack sequence defined recursively solving maze problem, stacks and recursive algorithm for the establishment and call
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:1371
    • 提供者:张宏超
  1. ACM-

    0下载:
  2. ACM的几个经典算法包括:阿姆斯壮数、产生可能的集合、传话游戏、老鼠走迷宫、数字拆解-ACM several classical algorithms include: Armstrong number, resulting in a possible collection of messenger game Mouse Maze, digital dismantling
  3. 所属分类:Console

    • 发布日期:2017-04-05
    • 文件大小:63257
    • 提供者:HL
  1. FindMaze

    0下载:
  2. 从迷宫的入口找到穿过迷宫的路径到达迷宫出口,采用回溯算法,数据结构为堆栈-From the entrance of the maze to find the path through the maze to reach the maze exit, using backtracking algorithms, data structures for the stack
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:1976
    • 提供者:
  1. migong

    0下载:
  2. 利用数据结构中的递推算法实现迷宫的自动找路线-find the way to the maze
  3. 所属分类:Console

    • 发布日期:2017-04-14
    • 文件大小:2756
    • 提供者:王星星
  1. cPP

    0下载:
  2. (迷宫遍历)网格的散列(#)和点(.)在一个迷宫的图1是一个二维数组表示。在散列的二维数组,代表迷宫的墙壁和圆点代表广场上可能的路径通过迷宫。动作可以只有一个位置的数组,其中包含一个点。 # # # # # # # # # # # # # . . . # . . . . . . # . . # . # . # # # # . # # # # . # . . . . # . # # . . . . # # # . # . . # # # # . # . # . # . #
  3. 所属分类:Console

    • 发布日期:2017-06-01
    • 文件大小:14071219
    • 提供者:dqy
  1. amaze6

    0下载:
  2. 六角迷宫的生成与自动破解,挖墙补强,洪水破解-Hexagonal maze generation and automatic crack
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:3358
    • 提供者:无名
  1. Game

    0下载:
  2. 控制台迷宫打怪小游戏,可以实现打怪,怪物自动追踪人物等-Console maze to play blame game, can realize a strange, monster automatic tracking character etc
  3. 所属分类:Console

    • 发布日期:2017-04-24
    • 文件大小:39168
    • 提供者:张亚洲
  1. migong

    0下载:
  2. 迷宫小游戏 C语言编译 vc可正常编译运行 -Maze game C language compiler can compile and run the VC normal
  3. 所属分类:Console

    • 发布日期:2017-04-29
    • 文件大小:198027
    • 提供者:keke
  1. laberinto

    0下载:
  2. maze developed with dynamic arrays. C language
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:1992
    • 提供者:geraballz
« 1 23 »
搜珍网 www.dssz.com