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

搜索资源列表

  1. Maze

    0下载:
  2. (1)创建并打印迷宫 (2)自动寻路并演示 (3)改变迷宫难度 (4)定位光标和隐藏光标 (5)玩家控制走迷宫 (6)评分系统 (7)排序系统 (8)文件读写 (9)获取当前时间 -(1) Create and print Maze (2) automatic routing and presentation (3) the difficulty of changing the Maze (4) to position the cursor and hide
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-08
    • 文件大小:6683
    • 提供者:lin
  1. MAZE

    0下载:
  2. borlandc C++ 3.1 实现可视化迷宫算法-borlandc C++ 3.1 maze algorithm visualization
  3. 所属分类:CSharp

    • 发布日期:2017-04-14
    • 文件大小:2731
    • 提供者:张政
  1. Maze

    0下载:
  2. 利用C语言编程,分别采用递归和非递归的方法解决迷宫问题-Using the C programming language, namely the use of recursive and non-recursive methods to solve the maze problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:103917
    • 提供者:eliizabeth
  1. graphics-maze

    0下载:
  2. 图形学上机实验:迷宫。一个OpenGL 程序,创建一个三维迷宫,支持替身通过一定交互手段在迷宫中漫游。此外包含详细的实验报告。-Graphics on an experiment: maze. An OpenGL program that creates a three-dimensional maze, through certain interactive tools to support avatars roam the maze. Also contains detailed exper
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-18
    • 文件大小:4934731
    • 提供者:weiyi
  1. maze

    0下载:
  2. maze solution. it is a solution for maze problem with matlab code. in this solution I used very simple functions and it is easy for everyone.
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:734
    • 提供者:lily
  1. maze

    0下载:
  2. MFC写的 迷宫类 通俗易懂 适合新手学习的最佳选择,解决新手的MFC一些困惑-To decribe the maze with MFC,and it is very acceptable for the new leaner
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-12
    • 文件大小:2619032
    • 提供者:李俊
  1. maze

    0下载:
  2. 经典的c语言迷宫问题解答,寻找路径,对于新手理解栈有很大帮助-maze problem
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1320
    • 提供者:于海坤
  1. Search-maze-game

    0下载:
  2. 搜寻迷宫小游戏,将球抛出,自动会找出正确出口。-Search maze game, the ball will be thrown, will automatically find the correct exports
  3. 所属分类:Other Riddle games

    • 发布日期:2017-05-29
    • 文件大小:11571200
    • 提供者:lvke
  1. maze

    0下载:
  2. 生成迷宫 尺寸可选(最好用IE之外浏览器) 迷宫搜索-Generated maze sizes available (preferably outside the IE browser) maze search
  3. 所属分类:Browser Client

    • 发布日期:2017-04-13
    • 文件大小:1923
    • 提供者:kakuho
  1. java-Maze

    0下载:
  2. This a java base maze travailing algorithm, backtracking based. Recursively travels trough the maze and find the target in the maze. -This is a java base maze travailing algorithm, backtracking based. Recursively travels trough the maze and find the
  3. 所属分类:JavaScript

    • 发布日期:2017-03-24
    • 文件大小:1027
    • 提供者:dilanga
  1. maze

    0下载:
  2. 用堆栈实现迷宫老鼠路径的输出,通路用x表示。-Stack rat maze path with the output path is represented by x.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-12
    • 文件大小:2975402
    • 提供者:王荣康
  1. Maze

    0下载:
  2. 迷宫搜索动态演示程序,比对分析深度,宽度和A*搜索的效率-Maze searching dynamic presentation program, comparative analysis of the depth, width, and A* search efficiency
  3. 所属分类:CSharp

    • 发布日期:2017-04-16
    • 文件大小:261868
    • 提供者:liuhu
  1. Maze

    0下载:
  2. 利用栈实现走迷宫的算法,走通的路径,走过但走不通的路径也已标出-Use stacks maze algorithm, the path to go through, and walked the path that leads to nowhere, but has also been marked
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1311
    • 提供者:谢文婷
  1. (mn)Maze

    0下载:
  2. C++迷宫程序,计算机系学生数据结构实验题。链栈非递归三元组输出路径迷宫程序-C++ maze procedure, computer department student data structure experiment.Chain stack non-recursive triples the output path maze procedure
  3. 所属分类:Other Games

    • 发布日期:2017-04-13
    • 文件大小:2504
    • 提供者:QINYUNCHAN
  1. maze-addressing

    0下载:
  2. C数据结构中的迷宫路径的求解,希望对C语言数据结构的研究有帮助-C data structure of the maze addressing
  3. 所属分类:Other systems

    • 发布日期:2017-04-24
    • 文件大小:251420
    • 提供者:wanglin
  1. maze

    0下载:
  2. 迷宫求解一般采用“穷举法”,逐一沿顺时针方向查找相邻块(一共四块-东(右)、南(下),西(左)、北(上))是否可通,即该相邻块既是通道块,且不在当前路径上。用一个栈来记录已走过的路径栈是限定仅在表尾(top)进行插入或删除操作的线性表。-Maze solving generally use the " exhaustive" one by one to find adjacent blocks in a clockwise direction (a total of four-
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1106676
    • 提供者:xf
  1. maze

    0下载:
  2. 制作迷宫游戏的最基础的程序,初学者可以参考一下-Making maze game of the most basic procedures, beginners can refer to
  3. 所属分类:software engineering

    • 发布日期:2017-04-15
    • 文件大小:11663
    • 提供者:刘磊
  1. Maze

    0下载:
  2. 使用递归方法与非递归方法求解迷宫问题。内容涉及递归的消去、属于数据与算法课程。-Use recursive and non-recursive method for solving approach maze. Covering recursion elimination, part of the data and algorithms course.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:4981
    • 提供者:xuebao1942
  1. maze

    0下载:
  2. 建立迷宫并查找是否有出口。若有出口则输出路径。-To establish whether there is a maze and find exit. If export the output path.
  3. 所属分类:MySQL

    • 发布日期:2017-04-10
    • 文件大小:984
    • 提供者:四毛
  1. Maze-code

    0下载:
  2. 以一个m×n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。首先用二维数组存储迷宫数据,迷宫数据由用户输入。一个以链表作存储结构的栈类型,然后编写一个求解迷宫的递归或非递归程序。求得的通路以三元组(i,j,d)形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向(东、南、西、北四个方向所用代表数字,自行定义) -With an m × n the long square maze, 0 an
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-01
    • 文件大小:3069
    • 提供者:Ryan
« 1 2 ... 24 25 26 27 28 2930 31 32 33 34 ... 50 »
搜珍网 www.dssz.com