java迷宫问题 华为_深度优先搜索——迷宫问题(华为oj)

题目描述:

定义一个二维数组N*M(其中2<=N<=10;2<=M<=10),如5 × 5数组下所示:

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表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线。入口点为[0,0],既第一空格是可以走的路。

Input

一个N × M的二维数组,表示一个迷宫。数据保证有唯一解,不考虑有多解的情况,即迷宫只有一条通道。

Output

左上角到右下角的最短路径,格式如样例所示。

Sample Input

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

Sample Output

(0, 0)

(1, 0)

(2, 0)

(2, 1)

(2, 2)

(2, 3)

(2, 4)

(3, 4)

(4, 4)

输入: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

输出:(0,0) (1,0) (2,0) (2,1) (2,2) (2,3) (2,4) (3,4) (4,4)

代码:

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

1 #include

2 #include

3 using namespacestd;4

5 structpoint6 {7 intx;8 inty;9 };10

11 static int a[100][100];12 static int book[100][100];13 int next[4][2]={{0,1},{1,0},{0,-1},{-1,0}};14 int tx=0,ty=0;15 intm,n;16 int themax=9999;17 vectorminway;18 vectorway;19 point xy;20

21 int dfs(int x,int y,intstep)22 {23 if(x==m-1&&y==n-1)24 {25 if(step=m||ty<0||ty>=n)38 continue;39 if(a[tx][ty]==0&&book[tx][ty]==0)40 {41 xy.x =tx;42 xy.y =ty;43 way.push_back (xy);44 book[tx][ty]=1;45 dfs(tx,ty,step+1);46 book[tx][ty]=0;47 way.pop_back ();48 }49 }50 return 0;51 }52

53 intmain()54 {55 cin>>m>>n;56 inti,j;57 for(i=0;i>a[i][j];62 }63 }64 book[0][0]=1;65 xy.x=0;66 xy.y=0;67 way.push_back (xy);68 dfs(0,0,1);69 //cout<

70 for(i=0;i

View Code

你可能感兴趣的:(java迷宫问题,华为)