搜索资源列表
soursecode
- 这是关于数据结构中迷宫问题的c语言实现 可供大家学习参考-This is the data structure of the maze of C Language Reference for everyone to learn
CCodeExample
- c代码用例。内容包括案例一 贪吃蛇游戏(学习基于while(!keyhit())的即时原理) 案例二 计算器 案例三 黑白棋游戏 案例四 迷宫问题 案例五 扫地雷游戏 案例六 速算24 案例七 数据结构CAI系统 案例八 进程调度 案例九 存储管理分区分配算法 案例十 通讯录 案例十一 学生成绩管理 案例十二 工资管理 案例十三 图书借阅管理 案例十四 教师工作量计算-c code with cases. Case including a hu
9
- 用C语言实现的数据结构课程设计中迷宫类 马踏棋盘实验.用WIN_TC编译通过.
Maze
- 数据结构课程设计:迷宫,采用Visual C++ 6.0开发,适合初学者学习使用。
MG
- 此程序实现了数据结构中的迷宫问题,用C语言编写,运行后输出为表示位置与方向的数据组
puzzle
- 迷宫求解。数据结构科重要程序。通过C语言实现。能正常运行。但需要帐户才能下载。请见谅。
数据结构的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 动态存储分配
迷宫 数据结构(C语言版)关于栈与队列
- 迷宫 数据结构(C语言版)关于栈与队列,求迷宫从入口到出口的所有路径,Maze data structure (C language version) on the stack and queue, and the maze from the entrance to the export of all path
MIGONG
- 用C语言基本数据结构实现的迷宫的一个算法 -Using C language basic data structure of a maze algorithm
migong
- 数据结构,迷宫求解。用Visual C++编写,通过调试-Data structure, solving the maze. Using Visual C++ Prepared, through the debugging
datastructuremazearithmetic
- 用C实现的数据结构迷宫算法,在Turbo C 环境下可运行出结果,值得借鉴。-With C data structures to achieve the maze algorithm, in the Turbo C environment to run out the results, is worth learning from.
migong
- 数据结构课程设计报告及代码 C语言环境 迷宫问题的设计 -Data structure curriculum design reports and code C language environment maze design issues
datastruct_example
- 本人讲授数据结构课程时的所写的示例程序,结构清晰规范,有注释,全部可编译运行,包括如下代码: 长整数:ch0_bigint2.c 顺序表的实现:ch2_stable.c 链表的实现ch2_ltable.c 合并两个有序表:ch2_stable_merge.c 表达式计算:ch3_express.c 队列的链式实现:ch3_lqueue.c 栈的链式实现:ch3_lstack.c 迷宫求解:ch3_maze.c 队列的顺序实现:ch3_squeue.c
sixmazeproblem
- 求解数据结构中迷宫问题的C语言源程序,代码精炼,已通过运行-Data structure to solve a maze problem in C-language source code
q
- 迷宫,数据结构,C语言,算是一个很实用的程序-Maze, data structures, C language, be regarded as a very practical program
MiGong
- 迷宫问题 C++ 数据结构 迷宫问题 C++ 数据结构-Maze C++ data structure
Maze
- c++用栈来实现迷宫求解(c语言数据结构)-c++ stack maze solving (c language data structure)
migong
- 利用 数据结构和c语言 设计的一个关于迷宫问题的解决和实现的源代码-Use of data structures and c language design of a maze problem solving and realization of the source code
数据结构——走迷宫
- 走迷宫算法的C++实现,可直接运行可执行文件 不需要重新编译(Maze algorithm C++ implementation, can run directly executable files do not need to re compile.)
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l