CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数据结构 迷宫问题

搜索资源列表

  1. migong

    0下载:
  2. 数据结构堆栈的经典应用: /*一:迷宫问题用堆栈的方法: 求迷宫中一条从入口到出口的路径的算法可简单描述如下: 设定当前位置的初值为入口位置: do{ 若当前位置可通, 则{ 将当前位置插入堆栈顶 若该位置是出口位置,则结束 否则切换当前位置的东邻块为新的当前位置 } 否则, 若堆栈不空且栈顶位置尚有其他方向未经探索 则设定新的当前位置为沿顺时针方向转到的栈顶位置的下一相邻块 若栈不空但栈顶位置的四周均不可通,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1384
    • 提供者:向曦
  1. wire

    0下载:
  2. 数据结构队列实现迷宫问题,加强版~C++版数据结构-The data structure queue maze problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-06
    • 文件大小:1389879
    • 提供者:lixiang
  1. program

    0下载:
  2. 数据结构程序设计,按照老师要求,对迷宫,多项式相乘,大数相乘问题进行解决。-Data structure programming, the teacher asked, maze, multiplying polynomials, multiply large numbers issue resolved.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-12-08
    • 文件大小:118219
    • 提供者:周杨
  1. migonglaoshu

    0下载:
  2. 数据结构,迷宫老鼠问题求解 迷宫是一个矩形区域,它有一个入口和一个出口。在迷宫的内部包含不能穿越的墙或障碍。迷宫的入口在左上角,出口在右下角。假定用n*m的矩阵来描述迷宫,位置(1,1)表示入口,(n,m)表示出口,n和m分别代表迷宫的行数和列数。迷宫中的每个位置都可用其行号和列号来指定。在矩阵中,当且仅当在位置(i,j)处有一个障碍时其值为1,否则其值为零。(即0表示能通过,1 表示不能通过。)现假设老鼠从左上角[1,1]进入迷宫,编写算法,寻求一条从右下角[m,n] 出去的路径。 迷
  3. 所属分类:software engineering

    • 发布日期:2017-12-07
    • 文件大小:1726
    • 提供者:翁雪花
  1. migong

    0下载:
  2. c++数据结构实习 求解迷宫问题 输入一个迷宫 起始位置和终点 输出所有可能的路线-the c++ practice data structure to solve the maze problem to enter a maze starting position and the end of the output of all possible routes
  3. 所属分类:Data structs

    • 发布日期:2017-12-08
    • 文件大小:2294
    • 提供者:lixiao
  1. The-maze-problem

    0下载:
  2. 数据结构课设——迷宫问题。采用C++编程,主要采用队列、指针,自动生成图案迷宫,并判断出路,迷宫大小可自己设置。界面较好。-Data structures course- the maze problem. To adopt C++ programming, mainly using the queue, a pointer, and automatically generate pattern maze and judge the way out of the maze size can se
  3. 所属分类:SQL Server

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

    0下载:
  2. 用C语言,通过典型的线性数据结构栈来解决迷宫问题,算法与严蔚敏的数据结构中相同-C language, typical stack linear data structure to solve the maze problem, the same algorithm and data structure Yan Wei Min
  3. 所属分类:Data structs

    • 发布日期:2017-11-05
    • 文件大小:761166
    • 提供者:萧一
  1. MiGongQiuJie

    0下载:
  2. 数据结构中的栈的应用,迷宫问题求解,用简单的算法实现基本功能,初学者可参考下-Stack data structure of the application, the maze problem solving, basic functions using a simple algorithm, beginners can refer to the following
  3. 所属分类:Data structs

    • 发布日期:2017-12-10
    • 文件大小:1607
    • 提供者:小易
  1. migong

    0下载:
  2. 求解迷宫中的路径,数据结构算法 堆栈的应用问题-To solve the maze path, stack data structure algorithms
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-10
    • 文件大小:1442
    • 提供者:田书耘
  1. maze_couples_ferry

    0下载:
  2. 数据结构中关于队列、堆栈、搜索的迷宫问题,couples问题和轮渡问题-Data structure on the queue, stack, search maze Couples problem and ferry problem
  3. 所属分类:Data structs

    • 发布日期:2017-11-26
    • 文件大小:73461
    • 提供者:lchongq
  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. 这是我的数据结构课程第三次作业--迷宫问题求解,包含递归与非递归算法-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. migong

    0下载:
  2. 利用 数据结构和c语言 设计的一个关于迷宫问题的解决和实现的源代码-Use of data structures and c language design of a maze problem solving and realization of the source code
  3. 所属分类:Data structs

    • 发布日期:2017-11-12
    • 文件大小:301909
    • 提供者:邓刚
  1. c-language-case-intensive-series

    0下载:
  2. c语言案例精编, 案例一 贪吃蛇游戏 案例二 计算器 案例三 黑白棋游戏 案例四 迷宫问题 案例五 扫地雷游戏 案例六 速算24 案例七 数据结构CAI系统 案例八 进程调度 案例九 存储管理分区分配算法 案例十 通讯录 案例十一 学生成绩管理 案例十二 工资管理 案例十三 图书借阅管理 案例十四 教师工作量计算-c language case intensive series, two cases a game Snake Case Ca
  3. 所属分类:Other systems

    • 发布日期:2017-11-09
    • 文件大小:50945
    • 提供者:劳承学
  1. maze

    1下载:
  2. 数据结构编写迷宫问题,利用入栈,出栈,队等知识,编写调试运行-Data structure of the maze problem, the use of the stack, the stack, teams knowledge, the preparation of commissioning
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1416412
    • 提供者:沈颜
  1. MIGONGWENTI

    0下载:
  2. 设计数据结构存储迷宫; 设计存储结构保存从人口到出口的通路 设计算法完成迷宫问题的求解; 分析算法的时间复杂度。-Design data structures stored maze designed to save storage structure is completed to solve the maze of passages from the population to export design algorithms analysis time complexity
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:8020
    • 提供者:王雷
  1. labyrinth2

    0下载:
  2. 这是一个用c语言编成的关于数据结构中的迷宫问题的小游戏程序,内容详尽,已成功在c语言编译环境下通过测试。-This is a language used c into the data structure of the maze of small game procedures, as detailed have been successful in C language compiler environment to pass the test.
  3. 所属分类:Game Program

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

    0下载:
  2. 数据结构课程设计——迷宫问题求解代码(已测试,可直接运行)-Curriculum design- maze problem solving code (already tested, can be directly run)
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1115
    • 提供者:Jason
  1. The-maze-problem

    0下载:
  2. C++源码,控制台实现数据结构中的迷宫问题,可给出所有路径的路径图,路径总数和最短路径图-Using VC++ to realize the maze problem.It can figure out all paths and the shortest path.
  3. 所属分类:Console

    • 发布日期:2017-05-16
    • 文件大小:4312198
    • 提供者:苗航
  1. Maze-problem-data-structure

    0下载:
  2. 算法与数据结构中 几类迷宫问题的源码 深入学习迷宫问题-Maze problem data structure
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:10973
    • 提供者:dushifeng
« 1 2 3 4 5 67 »
搜珍网 www.dssz.com