搜索资源列表
tt
- 背包问题的算法描述,以及迷宫求解问题的描述
WL40987330 C语言算法集
- 目录 第一部分 基础篇 001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010&
迷宫求解的非递归算法
- #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
Maze32
- 用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
ProductionMarketing
- 求解产销平衡或不平衡模型的算法,其中参照迷宫问题算法得到了最重要的闭回路法的算法-Solving the balance or imbalance in production and marketing of the algorithm model, with reference to one of the maze algorithm problem has been the most important method of closed-loop algorithm
migong
- 编写一个程序求解迷宫问题。迷宫由m行n列的二维数组设置,0表示无障碍,1表示有障碍。设入口为(1,1),出口为(m,n),每次只能从一个无障碍单元移到周围四个方向上任一无障碍单元。编程实现对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 算法输入:代表迷宫入口的坐标 算法输出:穿过迷宫的结果。 -The preparation of a program to solve maze problems. Maze by m lines n set out in two
cytestms18migong
- 一个迷宫问题的算法,详细的描述了迷宫的绘制、求解过程。-The issue of a maze algorithm, a detailed descr iption of the maze of the map, the solution process.
Four-kinds-of-classical-algorithms
- 四种经典的算法,包括猴子选大王,约瑟夫环,迷宫求解,文本编辑-Four kinds of classical algorithms, including the monkey king of the election, Joseph Wan, maze solving, text editor
migong
- 迷宫求解 求解迷宫中一条通路的伪码算法等-Solving a maze to solve the maze path of pseudo-code algorithm
famousalgorithmcollection
- <经典算法合集>其中包括: 最小生成树 MD5加密 LZW压缩 josephus 乘法表 积分 枚举 基数转换 矩阵问题举例 求解质数 圆周率的求法 改进的快速排序法 几种插入排序法 水仙花数 迷宫生成器 生命游戏 递归 回溯 贪心 动态规划 排序算法-" Classical algorithm Collection> These include:
hl
- 数据结构迷宫问题 C语言-数据结构算法-用栈实现迷宫问题求解 -Data structure maze problems
laoshu
- 老鼠走迷宫问题,通过算法求解找出所有的路径。感兴趣的同学可以-The Mouse Maze issues by solving algorithm to identify all the paths. Interested students can try
Maze
- 这是我的数据结构课程第三次作业--迷宫问题求解,包含递归与非递归算法-This is the third of my data structure course work- the maze problem-solving, including recursive and non-recursive algorithm
Labyrinth
- 利用栈实现的迷宫求解算法,可以进行多通道迷宫的求解,需要手动写入迷宫图形-Use stack to achieve the maze solving algorithm, can be multi-channel maze solving, you need to manually write the maze graphics
migong
- 有关迷宫的项目程序,用visual c++6.0编译通过可决定是自动生成迷宫,还是使用已有的迷宫。当迷宫给出过后,用“重复排除法”的找路径算法求解迷宫路线-For the maze project procedures, compiled with visual c++6.0 decision was automatically generated via a maze, or use an existing maze. When given after the maze, with the &
migong
- 用MFC写的迷宫小游戏,使用递归算法求解路径,迷宫可以自行设置-Written with MFC maze path using a recursive algorithm, you can set your own maze
migong
- 迷宫问题是取自心理学的一个古典实验。实验中,把一只老鼠从一个没有顶的大盒子的门放入,在盒中设置了许多墙,对行进的方向形成了多处阻挡。盒子仅仅有一个出口,在出口处放置了一块奶酪,吸引老鼠在迷宫中寻找道路以到达出口。重复对老鼠进行上述实验,看老鼠能在多久找到出口。 本算法实现迷宫问题求解。-The maze problem is a classical experiment taken psychology. In the experiment, a mouse was put into th
puzzle
- 迷宫求解的具体算法,需自行输入迷宫方可求解-Specific algorithm to solve the maze, the need to manually enter the maze before solving
算法设计
- 问题描述:以一个m×n的长方形表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求:首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。(Problem Descr iption: a m * n rectangle represents the maze, and 0 and 1 i
迷宫问题
- 此为回溯法求解迷宫问题的源代码,问题描述如下: 迷宫问题的求解是实验心理学的一个经典问题.,心理学家把一只老鼠从一个无顶盖的大盒子的入口赶进迷宫,迷宫中设置很多壁障,对前进方向形成了多处障碍,心理学家在迷宫的唯一出口放置了奶酪,吸引老鼠在迷宫中寻找通路以到达出口。设计回溯算法实现迷宫求解。(Retrospective method)