CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - labyrinth

搜索资源列表

  1. Maze-solution

    0下载:
  2. 迷宫求解,自动走出迷宫的经典算法,可计算10x10的任意可走迷宫的解。-The maze solving classical algorithm automatically out of the labyrinth, 10x10 any Maze solution can be calculated.
  3. 所属分类:Data structs

    • 发布日期:2017-11-21
    • 文件大小:184767
    • 提供者:王京石
  1. car

    1下载:
  2. 基于STC单片机的智能迷宫小车的算法,采样C语言编程,易懂。-Based on STC SCM intelligent labyrinth car algorithm, sampling C language programming, to understand.
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-11-14
    • 文件大小:85626
    • 提供者:wang lin
  1. Labyrinth

    0下载:
  2. 程序用于模拟小人走迷宫,小人每走到一格,下一步随机走到相邻的一格中,右上角为步数计步器,到达最右下方方格时声称成功。-Procedures for the simulation of a maze, the villain went to one, the next step random walk to the adjacent cell, for the upper right corner step pedometer, reached the right beneath the squa
  3. 所属分类:Dialog_Window

    • 发布日期:2017-11-21
    • 文件大小:3584033
    • 提供者:籍汉超
  1. labyrinth

    0下载:
  2. 实验实现基本思路:若当前位置可通,则纳入当前路径,并继续朝下一个位置探索,即切换下一位置为当前位置,如此重复直至到达出口;若当前位置不可通,则应顺着来向退回到前一通道块,然后朝着除来向之外的其他方向继续探索;若该通道块的四周4个方块均不可通,则应从当前路径上删除该通道块。设以栈记录当前路径,则栈顶中存放的是当前路径上最后一个通道块。由此,纳入路径的操作即为当前位置入栈;从当前路径上删除前一通道块的才操作即为出栈。-The experimental realization of the basic
  3. 所属分类:assembly language

    • 发布日期:2017-11-22
    • 文件大小:1279
    • 提供者:weihongdou
  1. laoshumigong

    0下载:
  2. 老鼠走迷宫是递回求解的基本题型,我们在二维阵列中使用2表示迷宫墙壁,使用1来表示老鼠的行走路径,试以程式求出由入口至出口的路径。-The Mouse Maze recursive solving basic questions, we used in the two-dimensional array 2 represents a labyrinth walls, 1 indicates the traveling path of the mice, try to program a path
  3. 所属分类:Algorithm

    • 发布日期:2017-11-21
    • 文件大小:13279
    • 提供者:叶子
  1. maze

    0下载:
  2. 一个XWindow下的迷宫游戏,展示了XWindow下的事件处理、画图等编程方法- -Under a XWindow labyrinth game, had demonstrated under theXWindow event processes, programming method and so on the painting
  3. 所属分类:Game Program

    • 发布日期:2017-12-09
    • 文件大小:6150
    • 提供者:sdfdfg
  1. x_maze

    0下载:
  2. X Windows下的迷宫程序-X Windows labyrinth procedure -Maze procedure-X Windows X Windows labyrinth procedure
  3. 所属分类:Linux Network

    • 发布日期:2017-12-06
    • 文件大小:6154
    • 提供者:新来的
  1. MAZE

    0下载:
  2. 穷举法走出迷宫的代码,自己写的小玩意儿,界面还算友好,欢迎下载,谢谢。-Exhaustive method code out of the labyrinth, write your own gadgets, the interface is pretty friendly welcome to download, thank you.
  3. 所属分类:Other Games

    • 发布日期:2017-11-25
    • 文件大小:3399
    • 提供者:natsumi
  1. maze

    0下载:
  2. 一个VC++编写的迷宫游戏,目录下包含了4个迷宫相关的源代码:简单的迷宫生成算法、复杂的迷宫生成算法、简单的迷宫搜索算法、复杂的迷宫搜索算法-A maze game based on VC++. the directory contains four the labyrinth associated source code generation algorithm: a simple maze generation algorithm, a complex maze, a simple maze
  3. 所属分类:Other Riddle games

    • 发布日期:2017-11-07
    • 文件大小:107520
    • 提供者:huangq
  1. wanggemigongxiaoche

    0下载:
  2. 该程序源码是为了实现一辆由黑线引导行进路线的智能小车。要求小车在活动场上能利用传感器判断黑线的位置,并自自动沿黑线前进并走出迷宫。-The program source code to a guide by the black line the route of the smart car. Car in the activity field using sensors to determine the position of the black line, and since automati
  3. 所属分类:SCM

    • 发布日期:2017-12-04
    • 文件大小:30884
    • 提供者:许万塔
  1. program3

    0下载:
  2. 数据结构实验,有关迷宫的算法,可以输入一个迷宫,功能有迷宫的输出,带路径的迷宫输出-Structure experiments, data about the maze algorithm, you can enter a maze, maze output function, with the path of the labyrinth output
  3. 所属分类:Data structs

    • 发布日期:2017-11-30
    • 文件大小:1155027
    • 提供者:zhuyanqing
  1. maze

    0下载:
  2. 完成迷宫程序的设计 输入 从maze.txt文件读入迷宫,格式如下 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为障碍物。 实验要求 要求自学查询技术文档,利用STL 的stack 类,完成以下要求的功能: 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两 个空格),注意每个位置都是两个字符。 打印示例
  3. 所属分类:Console

    • 发布日期:2016-03-13
    • 文件大小:207872
    • 提供者:ld
  1. src

    0下载:
  2. C编的控制台小游戏源码:暗影迷宫文件内容:导入的文件内容必须是以0和1构成的矩阵图(0代表墙,1代表通道),不能有其他数字,且矩阵元素间以空格分隔。请参考以下导入文件的格式进行编辑。-C series console game source: the Shadow Labyrinth file content: the content of the imported file must be based on 0 and 1 matrix (0 for wall, on behalf of th
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-14
    • 文件大小:12188
    • 提供者:吴勇辉
  1. STC12c5a60s2

    1下载:
  2. 基于单片机的迷宫小车系统设计 这是一款 由STC12c5a60s2单片机控制的迷宫小车程序,采用了5路红外避障,2路光电循迹,同时有霍尔传感器测距,12864显示的一款毕业设计-The design of labyrinth car system based on MCU This is a STC12c5a60s2 single chip to control the maze car program, using 5 infrared obstacle avoidance
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2014-04-05
    • 文件大小:67121
    • 提供者:王靖
  1. Labyrinth

    0下载:
  2. 利用栈实现的迷宫求解算法,可以进行多通道迷宫的求解,需要手动写入迷宫图形-Use stack to achieve the maze solving algorithm, can be multi-channel maze solving, you need to manually write the maze graphics
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:4878
    • 提供者:冯小珂
  1. Labyrinth

    0下载:
  2. 迷宫游戏,找出走迷宫的所有路径和最短路径,进行打印-Maze game, maze to find all the paths and the shortest path for printing
  3. 所属分类:GUI Develop

    • 发布日期:2017-11-18
    • 文件大小:263509
    • 提供者:叶倩莹
  1. labyrinth

    0下载:
  2. 用c语言求解迷宫问题 很详细是一个比较不错的课设-Problem solving maze with c language is a very detailed set relatively good lesson
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-17
    • 文件大小:68772
    • 提供者:朱洁
  1. maze

    0下载:
  2. 迷宫游戏的变成,无图形界面,可以自行生成迷宫,或读取迷宫(迷宫的读取文件需要自己编写.txt)等多种生成迷宫方式。有部分bug存在-Maze game becomes, no graphical interface, you can self generate maze, or read the labyrinth (maze to read files need to write your own. Txt) and other ways to generate mazes. Some bug
  3. 所属分类:Other Games

    • 发布日期:2017-04-06
    • 文件大小:9427
    • 提供者:liudongzhu
  1. migong

    0下载:
  2. 设计一个OpenGL程序,创建一个三维迷宫,支持替身通过一定交互手段在迷宫中漫游,基本功能包括:  迷宫应当至少包含10 * 10 个Cell,不能过于简单,下图给出一种示例。  读取给定的替身模型,加载到场景中。  键盘方向键控制替身转向与漫游。  有碰撞检测,替身不应当穿墙。  支持切换第一视角和第三视角进行观察。  迷宫场景中的墙、地面等应贴上纹理。 扩展功能:
  3. 所属分类:3D Graphic

    • 发布日期:2017-05-10
    • 文件大小:2538263
    • 提供者:张天扬
  1. Creat-Alarm-

    0下载:
  2. scheme 建立警报器光学迷宫3d模型-scheme to establish an optical labyrinth 3d models Sirens
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:550
    • 提供者:zqy
« 1 2 3 4 5 6 78 9 10 »
搜珍网 www.dssz.com