BFS广度优先搜索:一般借助队列实现具体问题求解,跟深度优先搜索相似,也是一种枚举;
题目大意:
详见我的博客DFS
基本思路:
用队列实现BFS;
代码如下:
(这次就不输出路径了,不过我留着用f表示在队列中的位置,读者可以试着写一写输出最短路径的情况,题目是《啊哈!算法》上的,所以代码大致相似,因为我就是这么学的)
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cstring>
using namespace std;
const int maxn = 2500+10;
const int maxv = 100+10;
struct note
{
int x,y;
int f;
int s;
};
note que[maxn];
int arr[maxv][maxv],book[maxv][maxv];
int next[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
int r,c,flag;
int main()
{
scanf("%d%d",&r,&c);
for(int i=1;i<=r;++i)
for(int j=1;j<=c;++j)
scanf("%d",&arr[i][j]);
int startx,starty,endx,endy;
scanf("%d%d%d%d",&startx,&starty,&endx,&endy);
int head=1,tail=1;
que[tail].x=startx;
que[tail].y=starty;
que[tail].f=0;
que[tail].s=0;
tail++;
book[startx][starty]=1;
while(head<tail)
{
int tx,ty;
for(int i=0;i<=3;++i)
{
tx=que[head].x+next[i][0];
ty=que[head].y+next[i][1];
if(tx<1||tx>r||ty<1||ty>c) continue;
if(arr[tx][ty]==0&&book[tx][ty]==0)
{
book[tx][ty]=1;
que[tail].x=tx;
que[tail].y=ty;
que[tail].s=que[head].s+1;
que[tail].f=head;
tail++;
}
if(tx==endx&&ty==endy)
{
flag=1;
break;
}
}
if(flag==1) break;
head++;
}
printf("%d",que[tail-1].s);
return 0;
}
测试样例:
5 4
0 0 1 0
0 0 0 0
0 0 1 0
0 1 0 0
0 0 0 1
1 1 4 3
样例输出:
7