CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - Maze Problem

搜索资源列表

  1. maze

    1下载:
  2. 数据结构试验报告—迷宫问题,有详细的需求分析和源码及测试结果,高质量!-Test report data structure- a maze problem, there is a detailed needs analysis and source code and test results
  3. 所属分类:Data structs

    • 发布日期:2014-10-03
    • 文件大小:69159
    • 提供者:sunyingcheng
  1. maze

    0下载:
  2. 这是经典迷宫问题,本代码是用C语言实现的-This is the classic maze problem, the code is achieved using C language
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:2835
    • 提供者:huqiong
  1. maze

    0下载:
  2. 我们数据结构课的课程设计,是一个迷宫问题的实验,用了A*算法求解迷宫的最短路径-Data structure of our course curriculum design, the problem is a maze experiment, using the A* algorithm to solve the maze of the shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2919970
    • 提供者:Shi
  1. Maze

    0下载:
  2. 数据结构中迷宫问题的求解,迷宫问题.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 迷宫问题.cpp 这是主应用程序源文件。 StdAfx.h, StdAfx.cpp 这些文件用于生成名为 迷宫问题.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 -Data structure to solv
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:155443
    • 提供者:张艳彬
  1. maze

    0下载:
  2. 该程序解决的是迷宫问题。给定一个n(n<20)行m(m<20)列的迷宫,迷宫每个位置用整数1和0表示,0表示墙,1表示通道,给出迷宫起点(x0,y0)和终点(x1,y1),求出起点到终点的最短路径。-The procedure to solve the maze problem. Given an n (n < 20) row m (m < 20) out of the maze, the maze of each position with the integer 1 an
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1747
    • 提供者:风泪
  1. Maze

    0下载:
  2. 经典的迷宫问题算法,本程序采用栈进行回溯求解,并求出了所有解-The classic maze problem algorithm, the program uses the stack to back solution, and all solutions are obtained
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:880469
    • 提供者:张前东
  1. maze

    0下载:
  2. 通过学习奥赛培训课程,利用回溯加递归的编程技巧完成的迷宫问题-Training courses through learning Orsay, plus use of recursive programming skills back to complete the maze problem
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:874120
    • 提供者:hust小羊
  1. Maze

    0下载:
  2. 迷宫问题,有图形界面,很好的学习资料,实用与c++的初学者-maze problem,A graphic interface, very good learning material
  3. 所属分类:Data structs

    • 发布日期:2017-05-20
    • 文件大小:5658160
    • 提供者:胡金豆
  1. Maze-problem

    0下载:
  2. 解决数据结构中的迷宫问题 可在TUEBOC中直接运行-Data structure to solve the maze problem can be run directly in TUEBOC
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1033
    • 提供者:陈蓝
  1. Mazing-Problem

    0下载:
  2. 迷宫问题 以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求: (1)首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。 (2)测试几组数据,数据的规模由小变大,即网格越来越小,障碍越来越复杂。 拓展要求: 实现该问题的可视化界面,用鼠标点
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:43869
    • 提供者:panbowen
  1. Maze

    0下载:
  2. 迷宫问题求解,一个经典的算法。包含完整的程序代码,可以直接运行。-Maze problem solving, a classical algorithm. Contains the complete code can be run directly.
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1753539
    • 提供者:追风
  1. MAZE

    0下载:
  2. a new way to solve MAZE problem using cellular automaton
  3. 所属分类:matlab

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

    0下载:
  2. 实现迷宫问题的求解:以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。-Achieve maze problem solving: a long-m* n matrix that maze, 0 and 1, respectively, in the maze of paths and obstacles. Design a program, for any set of the maze, find
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1605
    • 提供者:GUM
  1. maze

    0下载:
  2. 用深度优先算法解决的走迷宫问题,使用文件输入输出,其中输入的矩阵中,0表示不可走,1表示可走。-With a depth-first algorithm to solve the maze problem, use the file input and output, where the input matrix, 0 can not go, 1 to go.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:262427
    • 提供者:邹伟豪
  1. maze

    0下载:
  2. 控制台输出的迷宫类的经典问题,L代表阻隔物,W代表通路,可作为解决一般迷宫问题的代表。-Console output of the classic maze problem, L on behalf of the barrier, W on behalf of access, it can solve the general mazeproblem as a representative.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1359
    • 提供者:
  1. Maze-problem

    0下载:
  2. 该程序用C++语言解决了一个简单的迷宫求解问题。-Maze problem:This programe offer a solution to the commom Maze problem.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1308
    • 提供者:zeq
  1. 2.9maze-problem

    0下载:
  2. 解决数据结构关于迷宫问题编程题的代码,已经调试通过-Solve data structure about maze problem the topic the programming code, have debugging through
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1394
    • 提供者:shu
  1. maze

    0下载:
  2. 简单的迷宫问题C++源码,数据结构中实习的题目——迷宫问题。-Simple maze problem C++ source code, practice topics in the data structure- maze.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:30360
    • 提供者:杨客
  1. maze-problem

    0下载:
  2. 迷宫问题的应用程序,含深度搜索和广度搜索-maze problem The depth of the search
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:72639
    • 提供者:希念
  1. the-maze-problem

    0下载:
  2. 功能:用递归方法实现对迷宫问题的求解。 内容说明:熟练递归特点;掌握递归与栈的关系。-Function: using recursive method to solve the maze problem. Content Descr iption: familiar with recursive characteristics master the relationship between recursion and stack.
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:11071
    • 提供者:Sylvie
« 12 3 4 5 6 »
搜珍网 www.dssz.com