迷宫求解问题c语言程序设计,迷宫问题 (C语言代码)bfs

解题思路:

注意事项:

参考代码:#include

#include

#include

using namespace std;

const int maxn=500;

struct node

{

int x,y,step;

};

int dx[]={1,-1,0,0};

int dy[]={0,0,-1,1};

bool vis[maxn][maxn];

char mat[maxn][maxn];

int main()

{

bool flag;

char ch;

int sx,sy,t,n,m;

cin>>t;

while(t--){

flag=0;

struct node top,nex;

memset(vis,0,sizeof(vis));

memset(mat,0,sizeof(mat));

cin>>n>>m;

for(int i=1;i<=n;i++){

for(int j=1;j<=m;j++){

cin>>ch;

if(ch=='S'){

sx=i,sy=j;

}

mat[i][j]=ch;

}

}

queue q;

top.x=sx,top.y=sy,top.step=0;

vis[sx][sy]=1;

q.push(top);

while(!q.empty()){

top=q.front();

q.pop();

for(int i=0;i<4;i++){

nex.x=top.x+dx[i];

nex.y=top.y+dy[i];

if(nex.x<1||nex.y<1||nex.x>n||nex.y>m||vis[nex.x][nex.y]||mat[nex.x][nex.y]=='#'){

continue;

}

nex.step=top.step+1;

if(mat[nex.x][nex.y]=='E'){

flag=1;

break;

}

vis[nex.x][nex.y]=1;

q.push(nex);

}

if(flag)

break;

}

if(flag)

cout<

else

cout<

}

return 0;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值