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

搜索资源列表

  1. mazproblem

    0下载:
  2. 一个迷宫求解的完整程序,非常有参考价值,不看会后悔
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12545
    • 提供者:lidajin
  1. puzzle

    0下载:
  2. 迷宫求解。数据结构科重要程序。通过C语言实现。能正常运行。但需要帐户才能下载。请见谅。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1345
    • 提供者:李芳
  1. Maze

    1下载:
  2. 数据结构课程设计----迷宫求解(非递归)[含实验报告]
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:82719
    • 提供者:
  1. maze

    0下载:
  2. 主要实现了迷宫求解的功能,用到的就是栈的基本操作.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6581
    • 提供者:ljp
  1. migongqiujie

    0下载:
  2. 迷宫求解源代码,用c++实现,可能功能还不够完善,希望大家谅解。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1442
    • 提供者:name
  1. 用回溯法和栈求解迷宫问题

    0下载:
  2. 用回溯法和栈求解迷宫问题-with retroactive law and stack maze solving problems
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:184543
    • 提供者:方锐
  1. migong

    0下载:
  2. C编写的迷宫求解,生成一个10*10的迷宫,并逐步求解
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1065
    • 提供者:炫耀
  1. 1

    0下载:
  2. VB 迷宫求解 一个用VB平台开发的迷宫求解程序。功能强大。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:160093
    • 提供者:254301214
  1. migong

    0下载:
  2. 迷宫求解,用栈来实现,深度搜索,自动生成迷宫。
  3. 所属分类:搜索引擎

    • 发布日期:2008-10-13
    • 文件大小:5853
    • 提供者:傅慧玲
  1. migong

    0下载:
  2. /*这个程序是学数据结构后写的,里面涉及到了栈和队列的一些操作。开始本来只是要做迷宫求解的,但就看着电脑在里面运行,没有互动性也没什么意思,于是加入了由人控制的角色,让电脑控制的角色每走一步都计算一次当前两者的最短距离去追赶人控制的角色。这个程序画地图的部分是得于网上的一个迷宫程序,汉字部分也是用的别别人写好的子程序。其实这个程序还不是很完善,开始做好了一个,却不知那儿弄丢了,假期因为参加电子设计大赛,都玩单片机去了,这方面的也忘差不多了,希望有兴趣的朋友能改好了发给我.我的email:xian
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:28067
    • 提供者:向远
  1. 迷宫正确答案

    0下载:
  2. 经典迷宫问题求解-classic Maze Problem Solving
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3456
    • 提供者:李白
  1. TC求解迷宫问题并显示

    0下载:
  2. 输入一个任意大小的迷宫, 用栈求出一条走出迷宫的路径, 并显示在屏幕上。-importation of a maze of arbitrary size, with a stack get out of the maze of trails and on the screen.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:7878
    • 提供者:光清
  1. migong

    0下载:
  2. 迷宫求解,求得很多条路径。有详细的文挡,从文件读入迷宫形式-maze solving, and seek many of the trails. A detailed text block, read from the paper forms maze
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:10210
    • 提供者:张天
  1. 迷宫求解的非递归算法

    0下载:
  2. #include #include #include #define N 20 int aa[N][N]; int yes=0; int x[100][2],n=0; void fun1(int (*aa)[N],int (*a)[N]); int fun(int (*a)[N],int i,int j); void begain(int (*t)[N]); void pr(int (*t)[N],int nn); void win(int (*t)[N]); void lose(); void
  3. 所属分类:C#编程

  1. Maze32

    0下载:
  2. 用C实现的迷宫求解算法。图形界面,求解过程参照了深度优先搜索,迷宫由随即矩阵生成,采用栈作为路径存储结构-Implemented in C maze solving algorithm. Graphical interface, the solution process with reference to the depth-first search, then the matrix generated by the maze, using the stack as the storage st
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-19
    • 文件大小:5266948
    • 提供者:杨萝卜
  1. recursion

    0下载:
  2. 经典递归算法的C源码实现“迷宫求解”和“图像去噪音的问题”。-Classical recursive algorithm of C source code to achieve "maze solving" and "clean up the noise of images".
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:2642
    • 提供者:jiangshifeng
  1. scasca

    0下载:
  2. 迷宫求解 用一个m×n长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序对于任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。-Maze solving an m × n long phalanx said the maze, the maze of pathways and barriers 0 and 1, respectively. Design a program for any set of the maze, find a path from entran
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:2712
    • 提供者:mkk
  1. Algo3-5

    0下载:
  2. 实现迷宫求解,可以方便的找出迷宫出口,很好的哦-The realization of the maze to solve, you can easily find out the maze of export, oh well
  3. 所属分类:Data structs

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

    0下载:
  2. 关于迷宫求解的一个通常解法,大家相互参考一哈吧,认真分析还是能解决的,数据结构的经典题型-On solving a maze is usually solution, we let each other with reference to a Kazakh, a careful analysis, or can be resolved, the data structure of the classic questions
  3. 所属分类:Windows Develop

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

    0下载:
  2. 本程序为一个迷宫求解程序,他实现了如何求解迷宫-This procedure for solving a maze procedure, he realized how to solve the maze
  3. 所属分类:source in ebook

    • 发布日期:2017-03-30
    • 文件大小:1597
    • 提供者:wang
« 1 2 34 5 6 7 8 9 10 ... 16 »
搜珍网 www.dssz.com