算法笔记#6:迷宫问题1

题目详情:

TZOJ6948走迷宫:

https://www.tzcoder.cn/acmhome/problemdetail.do?method=showdetail&id=6948

TZOJ2149 数据结构--迷宫问题二:

https://www.tzcoder.cn/acmhome/problemdetail.do?method=showdetail&id=2149


题目讲解视频:

【【c++】我花了两天时间,走了三个迷宫(手把手写代码)】https://www.bilibili.com/video/BV1Uj411T7K3?vd_source=2c6f0c5d33eca0d75d8c3ceb6375eb3e

视频中的源代码:

TZOJ6948 走迷宫

#include<bits/stdc++.h>
using namespace std;
char maze[10][10];
int vis[101][101]={0};
int nex[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
int flag=0;

void dfs(int x,int y)
{
    if(x==9&&y==9)
    {
    flag=1;
    return;
    }
    for(int i=0;i<4;i++)
    {
        int tx=x+nex[i][0];
        int ty=y+nex[i][1];
        if(tx<1||tx>10||ty<1||ty>10)
        {
            continue;
        }
        if(maze[tx][ty]=='1'&&vis[tx][ty]==0)
        {
            vis[tx][ty]=1;
            dfs(tx,ty);
        }
    }

}



int main()
{
    for(int i=1;i<=10;i++)
    {
        for(int j=1;j<=10;j++)
        cin>>maze[i][j];
    }
    dfs(2,2);
    if(flag==1)
    cout<<"successful!";
    else
    cout<<"fail!";
    return 0;



}

TZOJ 2149 数据结构--迷宫问题

#include<bits/stdc++.h>
using namespace std;
int maze[5][5];
int vis[5][5]={0};
int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
struct node
{
    int x,y;
}pre[10][10];
void bfs()
{
    queue<node> que;
    node str;
    str.x=str.y=0;
    que.push(str);
    vis[0][0]=1;
    while(!que.empty())
    {
        node now=que.front();
        que.pop();
        if(now.x==4&&now.y==4)
        {
            return;
        }
        for(int i=0;i<4;i++)
        {
            node next;
            next.x=now.x+dir[i][0];
            next.y=now.y+dir[i][1];
            if(next.x>=0&&next.x<5&&next.y>=0&&next.y<5&&!maze[next.x][next.y]&&!vis[next.x][next.y])
            {
                vis[next.x][next.y]=1;
                que.push(next);
                pre[next.x][next.y]=now;


            }
        }



    }
}
void print(node a)
{
    if(a.x==0&&a.y==0)
    {
        printf("(0, 0)\n");
        return;
    }
    print(pre[a.x][a.y]);
    printf("(%d, %d)\n",a.x,a.y);



}
 
int main()
{
    for(int i=0;i<5;i++)
    {
        for(int j=0;j<5;j++)
        cin>>maze[i][j];
    }
    bfs();
    node end;
    end.x=end.y=4;
    print(end);
    return 0;
}

未完待续

欢迎私信、评论区交流!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

captainfly_

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

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

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

打赏作者

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

抵扣说明:

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

余额充值