本文实例讲述了基于C语言实现的迷宫算法。分享给大家供大家参考,具体如下:
利用c语言实现迷宫算法,环境是vc++6.0.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#include<stdio.h>
#include<time.h>
#include<cstdlib>
int visit( int , int );
void setmaze();
int maze[11][11]=
{
{0,0,2,2,2,2,2,2,2,2},
{2,0,2,2,0,2,0,2,0,2},
{2,0,2,0,0,0,0,0,0,2},
{2,0,2,2,2,0,2,0,0,2},
{2,0,0,0,0,0,2,2,0,2},
{2,2,0,2,2,0,2,2,0,2},
{2,2,2,0,0,0,0,0,0,2},
{2,0,2,0,2,0,2,2,0,2},
{2,0,0,0,0,2,0,2,0,0},
{2,2,2,2,2,2,2,2,2,2}
};
int startI,startJ; //定义入口变量
int endI,endJ; //定义出口变量
int success=0; //定义返回变量
int p;
void setStart() // 设置入口
{
printf ( "请设置迷宫入口(i,j):" );
scanf ( "%d,%d" ,&startI,&startJ);
}
void setEnd() // 设置出口
{
printf ( "请设置迷宫出口(i,j):" );
scanf ( "%d,%d" ,&endI,&endJ);
}
void setmaze() //设置迷宫图
{
int i,j,a,p;
for (i=0;i<10;i++)
for (j=0;j<10;j++)
{
p= rand ()%2;
if (p==0) a=0;
else a=2;
maze[i][j]=a;
}
}
void DisplayMaze() //打印迷宫
{
int i,j;
for (i=0;i<10;i++)
{
printf ( " " );
for (j=0;j<10;j++)
if (maze[i][j]==2) printf ( "##" ); //打印墙壁
else printf ( " " ); //打印路径
printf ( "/n" );
}
}
void Maze_PS() //输出迷宫路径
{
int i,j;
if (visit(startI,startJ)==0) //寻找路径
printf ( "/n没有找到出口!/n" );
else
{
maze[startI][startJ]=8; //设置入口标志
maze[endI][endJ]=9; //设置出口标志
printf ( "/n显示路径:/n" );
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
if (maze[i][j]==8) printf ( "☆" ); //标志入口
else if (maze[i][j]==9) printf ( "○" ); //标志出口
else if (maze[i][j]==2) printf ( "##" ); //表示墙壁
else if (maze[i][j]==1) printf ( " >" ); //表示路径
else printf ( " " ); //通路
}
printf ( "/n" );
}
}
}
int visit( int i, int j) //寻找迷宫路径函数,找到路径返回1,找不到路径返回0
{
maze[i][j]=1;
if ((i==endI)&&(j==endJ)) success=1; //找到出口,返回值success为1
if ((success!=1)&&(maze[i][j+1]==0)) visit(i,j+1); //检测右面通路,若通,向右移动
if ((success!=1)&&(maze[i+1][j]==0)) visit(i+1,j); //检测下面通路,若通,向下移动
if ((success!=1)&&(maze[i][j-1]==0)) visit(i,j-1); //检测左面通路,若通,向左移动
if ((success!=1)&&(maze[i-1][j]==0)) visit(i-1,j); //检测上面通路,若通,向上移动
if (success!=1) maze[i][j]=0; //退回,自身标为0
return success;
}
main( void ) //主函数
{
int c1,c2;
for (c2=1;c2==1;)
{
srand ( time (0));
printf ( "显示迷宫:/n" );
for (c1=1;c1==1;)
{
DisplayMaze();
printf ( "按'1'输出新迷宫,'2'开始求解路径:/n" );
scanf ( "%d" ,&c1);
rewind (stdin); //清除输入缓冲区
if (c1==1) setmaze() ;
}
if (c1!=1&&c1!=2) { printf ( "Error!!/n" ); break ;}
setStart();
setEnd();
Maze_PS();
printf ( "Continue?(1 to continue,2 to exit.1)" );
scanf ( "%d" ,&c2);
if (c2==1) setmaze();
else break ;
}
system ( "pause" );
}
|
希望本文所述对大家C语言程序设计有所帮助。
原文链接:http://blog.csdn.net/reghi/article/details/5543878