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

搜索资源列表

  1. The-algorithm-of--a-Maze

    0下载:
  2. 这是一个走迷宫算法的源程序,适用于走迷宫游戏的编程-This is the algorithm of the source of a Maze, Maze Game Programming
  3. 所属分类:Other Riddle games

    • 发布日期:2017-11-09
    • 文件大小:4393
    • 提供者:王欢
  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. maze

    0下载:
  2. Finding path in a maze. program in python using numpy as interface
  3. 所属分类:Other Games

    • 发布日期:2017-12-10
    • 文件大小:576
    • 提供者:kj
  1. maze-problem

    0下载:
  2. 迷宫程序,输入行列值(包含围墙),自动生成一个迷宫并自动搜索路径,其中1代表围墙,0代表通路,最后打印路径,内容很简单,默认方向由正北方顺时针搜索。三个文件中maze.c是主文件。-c program,the maze problem.
  3. 所属分类:source in ebook

    • 发布日期:2017-11-14
    • 文件大小:3446
    • 提供者:廉月弯刀
  1. maze

    0下载:
  2. 根据严蔚敏数据结构书上的伪码实现的迷宫问题算法。-According to Yan Wei-min data structure book pseudo-code algorithm to achieve maze.
  3. 所属分类:Other windows programs

    • 发布日期:
    • 文件大小:2469
    • 提供者:wu_yi_chen
  1. Maze

    0下载:
  2. 迷宫程序,当你给出一个矩阵迷宫,可以给出方案路径。-A program of maze, when you input a matrix, this program can out put the best path to the goal.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-20
    • 文件大小:529
    • 提供者:姜佳君
  1. The-maze-established

    0下载:
  2. 数据结构,迷宫建立,c语言实现,找出迷宫路径。-Data structures, the maze established, c language, find out the maze path.
  3. 所属分类:software engineering

    • 发布日期:2017-11-24
    • 文件大小:11902
    • 提供者:颜高朔
  1. Maze

    0下载:
  2. 电脑鼠走迷宫程序,实现自动寻径,搜索最短路径等功能。是一个初期的程序。-Computer Mouse Maze procedure , automatic routing , search shortest path .
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-23
    • 文件大小:108457
    • 提供者: 丫头
  1. maze

    0下载:
  2. 用C编写 输入一个迷宫入口为<1,1>,出口在<8,8>编程找从入口到出口的一调通路 要求 迷宫可以用键盘输入 大小8*8以坐标方式和图形方式输出迷宫通路-it is a program about maze
  3. 所属分类:Other Games

    • 发布日期:2017-12-03
    • 文件大小:7075
    • 提供者:盖立碧
  1. The-mirror-maze

    0下载:
  2. POJ经典名题——镜子迷宫,搜索类题目经典做法,尤其注意边界条件讨论-The POJ classic title- Mirror Maze, search topics classic approach, particular attention to the boundary conditions discussed
  3. 所属分类:Other systems

    • 发布日期:2017-11-14
    • 文件大小:1731
    • 提供者:sc
  1. maze

    0下载:
  2. 一个完整的迷宫程序,在VS2010环境下运行,计算机课设或者学习图的遍历算法能用到-A complete maze procedure, run in the VS2010 environment, computer classes set or learning Figure traversal algorithm can be used to
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-30
    • 文件大小:3035929
    • 提供者:林崇洋
  1. maze

    0下载:
  2. 本代码实现的是一个简单迷宫问题。以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,豁得出没有同路的结论。 基本要求为: 首先实现一个以链表做存储结构的栈类型,然后编写一个求解迷宫的非递归程序,求得的通路一三元组(i,j,d)的形式输出,其中:(i,i)指示迷宫中的一个坐标,d表示走到下一坐标的方向。-The implementation of the code is a simple maze. A m* n t
  3. 所属分类:Console

    • 发布日期:2017-11-24
    • 文件大小:267321
    • 提供者:丁洁琼
  1. Maze

    0下载:
  2. [rar文件] flash as3.0 求解迷宫最短路径 深度优先策略-[Rar file] flash as3.0 Solving the shortest path in the maze depth-first strategy
  3. 所属分类:Data structs

    • 发布日期:2017-11-27
    • 文件大小:173257
    • 提供者:撒旦
  1. maze

    0下载:
  2. 一个用html5 canvas编写的迷宫游戏,运用两种不同算法生成迷宫,可以在canvas上鼠绘或用键盘操纵路径-a maze written by html5 canvas
  3. 所属分类:Browser Client

    • 发布日期:2017-11-23
    • 文件大小:4937
    • 提供者:aldkf
  1. Maze

    0下载:
  2. 这是我的数据结构课程第三次作业--迷宫问题求解,包含递归与非递归算法-This is the third of my data structure course work- the maze problem-solving, including recursive and non-recursive algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-02
    • 文件大小:188443
    • 提供者:tgl
  1. C-Maze

    0下载:
  2. C语言,小游戏,一个小迷宫代码,也可以当做毕业小成品使用-C language, games, a small maze code can also be used as a graduation refined use
  3. 所属分类:Other Riddle games

    • 发布日期:2017-11-08
    • 文件大小:1425
    • 提供者:Xiang Yi
  1. random-maze-algorithm-

    0下载:
  2. 基于visual c,实现的随机迷宫算法。已经过整理,内附分析与说明。-Based on visual c achieve random maze algorithm. Has been finishing, containing analysis and explanation.
  3. 所属分类:Other systems

    • 发布日期:2017-11-16
    • 文件大小:4399
    • 提供者:kim
  1. maze

    0下载:
  2. 用栈的方法计算迷宫路径。给出迷宫地图,用坐标输出迷宫入口到出口的路径-Calculated using the stack maze paths. Given maze map with coordinates output maze entrance to the exit path
  3. 所属分类:Other systems

    • 发布日期:2017-12-04
    • 文件大小:1980
    • 提供者:小杰
  1. Mines-maze--knight-eight-Queen-s-

    0下载:
  2. 本有细小软件包含地雷、迷宫、骑士、皇后 用于探索回溯算法的研究-The software contains a small mine, maze, knights, queens used to explore the backtracking algorithm
  3. 所属分类:Other windows programs

    • 发布日期:
    • 文件大小:981968
    • 提供者:张浩
  1. Maze

    0下载:
  2. 迷宫设计 利用STL 的stack 类,完成以下要求的功能: 1、打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两个空格),注意每个位置都是两个字符。 2、寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输FindPath(FindPath(FindPath(F
  3. 所属分类:Data structs

    • 发布日期:2017-11-25
    • 文件大小:2504877
    • 提供者:酉永松
« 1 2 ... 22 23 24 25 26 2728 29 30 31 32 ... 50 »
搜珍网 www.dssz.com