搜索资源列表
Mase
- 用VC写的,用栈解决了数据结构基本的迷宫问题.没有用到MFC类库-VC wrote, with a stack data structure to solve the basic problem of the maze. Do not use MFC
soursecode
- 这是关于数据结构中迷宫问题的c语言实现 可供大家学习参考-This is the data structure of the maze of C Language Reference for everyone to learn
迷宫问题(05号 王耀辉)
- 数据结构的课程设计-data structure of the curriculum design
迷宫问题aaa
- 迷宫问题 数据结构-maze data structure problem
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
maze
- 数据结构试验报告—迷宫问题,有详细的需求分析和源码及测试结果,高质量!-Test report data structure- a maze problem, there is a detailed needs analysis and source code and test results
zuoye
- 迷宫问题与运动会,有丰富的实例与测试数据,是学习数据结构的较好的资料!-Maze with the Games, has a wealth of examples and test data, data structure to learn the information better!
maze
- 数据结构 课程设计 迷宫问题 欢迎下载-Data structure the curriculum design issues welcome maze download
migongwenti
- 迷宫问题,寻求走出迷宫的一条通路。计算机专业数据结构课程的重点内容之一。-Maze to find a pathway out of the maze. Computer data structure course, one of the key elements.
MM
- 数据结构中常见的迷宫求解问题 使用顺序栈 初学者适用-Data structure of the maze to solve common problems using the order applies to stack beginners
migong
- 数据结构课程设计报告及代码 C语言环境 迷宫问题的设计 -Data structure curriculum design reports and code C language environment maze design issues
maze
- 我们数据结构课的课程设计,是一个迷宫问题的实验,用了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
sixmazeproblem
- 求解数据结构中迷宫问题的C语言源程序,代码精炼,已通过运行-Data structure to solve a maze problem in C-language source code
maze
- 可视化迷宫问题,数据结构练习,堆栈的应用-Visualization maze
101
- 关于数据结构的课程设计 迷宫问题+校园导游+跳舞配对+多项式运算等-Curriculum design on the data structure mazes guide+ dance+ school+ polynomial operations, such as matching
MiGong
- 迷宫问题 C++ 数据结构 迷宫问题 C++ 数据结构-Maze C++ data structure
Maze
- 计算机专业课程数据结构中关于迷宫问题的源代码-Computer Course data structure source code on the maze
report
- 数据结构实验报告。其中包括表达式求值和迷宫问题的源程序以及调试报告。-Experimental data structure report. Including the problem of expression evaluation and the maze of the source and debug reports.
migong
- 数据结构迷宫问题详尽代码 简单易懂 思路清晰-Data structure the maze problems detailed code is straightforward and clear thinking
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l