刷题笔记--走迷宫

** 刷题笔记–走迷宫**

如果小伙伴还不太了解迷宫问题,可以在B站搜索:麦克老师讲算法–BFS解决迷宫问题
个人觉得讲得很清晰!

  1. 走迷宫
// write your code here cpp
#include<queue>
#include<vector>
#include<iostream>
using namespace std;

struct point{
    int x;
    int y;
    int step;
};




int bfs(vector<string>&mp)
{
    int dx[4]={0,1,0,-1};
    int dy[4]={1,0,-1,0};
    struct point start{0,1,0};
    struct point endp{9,8,0};
    queue<point>q;
    q.push(start);
    vector<vector<bool>>used(10,vector<bool>(10,false));
    used[start.x][start.y]=true;
    while(!q.empty()){
        int x=q.front().x,y=q.front().y;
        if(x==endp.x&&y==endp.y){
            return q.front().step;
        }
        for(int i=0;i<=3;++i){
            int tx,ty;
            tx=x+dx[i];
            ty=y+dy[i];
            if(tx>=0&&tx<10&&ty>=0&&ty<10&&mp[tx][ty]=='.'&&used[tx][ty]==false)
            {
                point tmp;
                tmp.x=tx;
                tmp.y=ty;
                tmp.step=q.front().step+1;
                q.push(tmp);
                used[tx][ty]=true;
            }
        }
        q.pop();
    }
    return 0;
}
int main(){
    vector<string>mp(10);
    int i=0;
    while(cin>>mp[i++]){
        if(i==10){
            cout<<bfs(mp)<<endl;
            i=0;
        }
    }
    return 0;
}
  1. 迷宫
#include<iostream>
#include<queue>
using namespace std;
char map[501][501];
int mark[501][501];
int n, m;
struct node {
    int x, y;
    int t;
};
int mynext[4][2]{
    0,1,
    1,0,
    0,-1,
    -1,0
};
queue<node> Q;
int BFS(int x, int y) {
    while (!Q.empty()) {
        node now = Q.front();
        Q.pop();
        for (int i = 0; i < 4; i++) {
            int nx = now.x + mynext[i][0];
            int ny = now.y + mynext[i][1];
            if (nx < 0 || nx >= n || ny < 0 || ny >= m || map[nx][ny] == '#'|| mark[nx][ny] == 1) { continue; }
            mark[nx][ny] = 1;
            node tmp;
            tmp.x = nx; tmp.y = ny;
            tmp.t = now.t + 1;
            Q.push(tmp);
            if (map[nx][ny] == 'T') { return tmp.t; }
        }
    }
    return -1;
}
int main() {
    node first;
    while (cin >> n>>m ) {

        while (!Q.empty()) Q.pop();
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                cin >> map[i][j];
                if (map[i][j] == 'S') {
                    first.x = i; first.y = j;
                    mark[first.x][first.y] = 1;
                }
            }
        }
        first.t = 0;
        Q.push(first);
        cout << BFS(first.x, first.y) << endl;
    }
    system("pause");
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

CodePlayer大旭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值