Chinaunix
标题:
走迷宫,depth first search,dfs,深度优先搜索
[打印本页]
作者:
blackfur
时间:
2013-10-26 20:40
标题:
走迷宫,depth first search,dfs,深度优先搜索
现在我们用堆栈解决一个有意思的问题,定义一个二维数组:
int maze[5][5] = {
0, 1, 0, 0, 0,
0, 1, 0, 1, 0,
0, 0, 0, 0, 0,
0, 1, 1, 1, 0,
0, 0, 0, 1, 0,
};
它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的路线。
3、上一节我们实现了一个基于堆栈的程序,然后改写成递归程序,用函数调用的栈帧替代自己实现的堆栈。本节的DFS算法也是基于堆栈的,请把它改写成递归程序,这样改写可以避免使用predecessor数据结构,想想该怎么做。
倒序打印:
#include <stdio.h>
#define MAX_ROW 5
#define MAX_COL 5
struct point { int row, col; };
int maze[MAX_ROW][MAX_COL] = {
{0, 1, 0, 0, 0},
{0, 1, 0, 1, 0},
{0, 0, 0, 0, 0},
{0, 1, 1, 1, 0},
{0, 0, 0, 1, 0},
};
int explore(struct point p){
if (p.row == MAX_ROW - 1 /* goal */
&& p.col == MAX_COL - 1)
return 1;
struct point next;
if (p.col+1 < MAX_COL /* right */
&& maze[p.row][p.col+1] == 0){
maze[p.row][p.col+1] = 2;
next.row=p.row;
next.col=p.col+1;
if(explore(next)==1){
printf("(%d, %d), ", next.row, next.col);
return 1;
}
}
if (p.row+1 < MAX_ROW /* down */
&& maze[p.row+1][p.col] == 0)
{
maze[p.row+1][p.col] = 2;
next.row=p.row+1;
next.col=p.col;
if(explore(next)==1){
printf("(%d, %d), ", next.row, next.col);
return 1;
}
}
if (p.col-1 >= 0 /* left */
&& maze[p.row][p.col-1] == 0)
{
maze[p.row][p.col-1] = 2;
next.row=p.row;
next.col=p.col-1;
if(explore(next)==1){
printf("(%d, %d), ", next.row, next.col);
return 1;
}
}
if (p.row-1 >= 0 /* up */
&& maze[p.row-1][p.col] == 0)
{
maze[p.row-1][p.col] = 2;
next.row=p.row-1;
next.col=p.col;
if(explore(next)==1){
printf("(%d, %d), ", next.row, next.col);
return 1;
}
}
return -1;
}
int main(void)
{
struct point p = { 0, 0 };
if(explore(p)!=1){
printf("no path!\n");
}
else
printf("(%d, %d)\n", p.row, p.col);
return 0;
}
复制代码
作者:
blackfur
时间:
2013-10-26 21:29
广度优先法,breadth first search,bfs
#include <stdio.h>
#define MAX_ROW 5
#define MAX_COL 5
struct point { int row, col, predecessor; } queue[512];
int head = 0, tail = 0;
void enqueue(struct point p)
{
queue[tail++] = p;
}
struct point dequeue(void)
{
return queue[head++];
}
int is_empty(void)
{
return head == tail;
}
int maze[MAX_ROW][MAX_COL] = {
{0, 1, 0, 0, 0},
{0, 1, 0, 1, 0},
{0, 0, 0, 0, 0},
{0, 1, 1, 1, 0},
{0, 0, 0, 1, 0}
};
void print_maze(void)
{
int i, j;
for (i = 0; i < MAX_ROW; i++) {
for (j = 0; j < MAX_COL; j++)
printf("%d ", maze[i][j]);
putchar('\n');
}
printf("*********\n");
}
void visit(int row, int col)
{
struct point visit_point = { row, col, head-1 };
maze[row][col] = 2;
enqueue(visit_point);
}
int main(void)
{
struct point p = { 0, 0, -1 };
maze[p.row][p.col] = 2;
enqueue(p);
while (!is_empty()) {
p = dequeue();
if (p.row == MAX_ROW - 1 /* goal */
&& p.col == MAX_COL - 1)
break;
if (p.col+1 < MAX_COL /* right */
&& maze[p.row][p.col+1] == 0)
visit(p.row, p.col+1);
if (p.row+1 < MAX_ROW /* down */
&& maze[p.row+1][p.col] == 0)
visit(p.row+1, p.col);
if (p.col-1 >= 0 /* left */
&& maze[p.row][p.col-1] == 0)
visit(p.row, p.col-1);
if (p.row-1 >= 0 /* up */
&& maze[p.row-1][p.col] == 0)
visit(p.row-1, p.col);
print_maze();
}
if (p.row == MAX_ROW - 1 && p.col == MAX_COL - 1) {
printf("(%d, %d)\n", p.row, p.col);
while (p.predecessor != -1) {
p = queue[p.predecessor];
printf("(%d, %d)\n", p.row, p.col);
}
} else
printf("No path!\n");
return 0;
}
复制代码
作者:
linux_c_py_php
时间:
2013-10-27 15:39
炫耀贴....
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2