搜索资源列表
迷宫问题的数组解法.rar
- 迷宫问题 数组解法
迷宫问题
- 解决迷宫问题(用c实现)-maze solve the problem (with c realization)
罗密欧与朱利叶的迷宫问题
- 数值算法与分析中的罗密欧与朱丽叶的迷宫问题解法,比较经典的算法。-numerical algorithm and analysis of Romeo and Juliet Solutions to the maze compared to the classical algorithm.
迷宫问题回朔解法
- 迷宫问题回朔解法-maze Schomburg solution to the problem
Java编写的求解迷宫问题的小程序
- Java编写的求解迷宫问题的小程序-Java solution prepared by the maze of small programs
迷宫问题的算法(优于广度优先,深度优先,递归)
- 迷宫问题的算法(优于广度优先,深度优先,递归).-maze of algorithm (priority than breadth, depth priority, recursive).
经典迷宫问题实现
- 经典迷宫问题实现,利用栈记录路径。本算法找到的并非最短的路径。
迷宫问题的递归算法
- 迷宫问题的递归算法-recursive algorithm for maze problem
迷宫问题的非递归算法(栈实现
- 迷宫问题的非递归算法-maze of non - recursive algorithm
回溯法求迷宫问题
- 回溯法求迷宫问题-back Method Maze
用遗传算法解迷宫问题的实现与改进
- 用遗传算法解迷宫问题的实现与改进-genetic algorithm maze of achievement and improvement
用回溯法和栈求解迷宫问题
- 用回溯法和栈求解迷宫问题-with retroactive law and stack maze solving problems
迷宫问题aaa
- 迷宫问题 数据结构-maze data structure problem
迷宫问题的算法
- 迷宫问题的算法,用c实现的-maze of algorithm, with the realization c
迷宫问题的算法(优于广度优先,深度优先
- 迷宫问题的算法(优于广度优先,深度优先-maze of algorithm (priority than breadth, depth priority
c++迷宫问题
- 这是我个人做的在vc环境下的迷宫问题的实现。各位可以参考或指教!-This is my personal vc done in the context of the realization of the maze. You can reference or enlighten!
迷宫问题的数组解法
- 迷宫问题 数组解法- Labyrinth question array solution
迷宫问题
- 图的遍历实践与迷宫问题求解。根据参考书《算法》第4.1节和4.2节关于图的邻接表的创建,使用说明;深度优先遍历(DFS)和广度优先遍历(BFS)算法的实现过程;结合迷宫问题的特点,分别编写基于深度优先遍历(DFS)和广度优先遍历(BFS)思想的迷宫求解过程算法。(Maze problem solving)
迷宫问题
- 此为回溯法求解迷宫问题的源代码,问题描述如下: 迷宫问题的求解是实验心理学的一个经典问题.,心理学家把一只老鼠从一个无顶盖的大盒子的入口赶进迷宫,迷宫中设置很多壁障,对前进方向形成了多处障碍,心理学家在迷宫的唯一出口放置了奶酪,吸引老鼠在迷宫中寻找通路以到达出口。设计回溯算法实现迷宫求解。(Retrospective method)
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l