走迷宫(bfs初级题目)

17 篇文章 0 订阅

 这道题是一道bfs基础题

 bfs的基本实现思路就是如上图所示,然后来看题目,这道题其实就是说有很多种走法,但是要选出一种最近的方法,就是说暴力搜索出所有的走法,选一条最近的,那么看代码。

就是用一个a的二维数组来存地图,b的二维数组来记录走的每个格子的步数,就是说如果可以走这一格那就在前一步的基础上加一,然后谁先走到{x,y}就跳出循环,

思路有了,上代码,就是说先

#include <cstring>
#include <iostream>
#include <algorithm>
#include <queue>

using namespace std;

typedef pair<int,int> PII;
const int N=110;

int a[N][N];
int b[N][N];
int n,m;

int dfs(){
    int x,y,i;
    queue<PII> q;
    memset(b,-1,sizeof b);
    q.push({0,0});
    b[0][0]=0;
//四个方向,上下左右
    int dx[4]={-1,1,0,0},dy[4]={0,0,-1,1};
//就是队列的长度,当队列的长度大于0时就继续循环,当走到{x,y}的时候,队列的元素就全出栈了
    while(q.size()>0){
//出队列
        auto t=q.front();
        q.pop();
        int f=t.first;
        int s=t.second;
//循环四次将每个方向,走一步,将所有情况搜索一遍
        for(i=0;i<4;i++){
            x=dx[i]+f;
            y=dy[i]+s;
//就是说不能出地图,还有要保证在地图里可以走(a[x][y]==0)
//还要没走过,b[x][y]==-1
            if(x<n && x>=0 && y<m && y>=0 && a[x][y]==0 && b[x][y]==-1){
                b[x][y]=b[f][s]+1;
                q.push({x,y});
            }
        }
    }
    return b[n-1][m-1];
    
}


int main(){
    cin>>n>>m;
    for(int i=0;i<n;i++)
    for(int j=0;j<m;j++)
    cin>>a[i][j];
    int sum=dfs();
    cout<<sum;
    return 0;
}

以下是Java中使用BFS算法解决走迷宫问题的示例代码: ```java import java.util.*; public class MazeBFS { static int[][] maze = {{0, 0, 0, 0, 0, 0, 0, 0}, {0, 1, 0, 1, 1, 1, 0, 0}, {0, 1, 0, 0, 0, 0, 0, 0}, {0, 1, 1, 1, 0, 1, 1, 0}, {0, 1, 0, 0, 0, 0, 1, 0}, {0, 1, 1, 1, 1, 1, 1, 0}, {0, 0, 0, 0, 0, 0, 0, 0}}; static int[][] direction = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}}; public static void main(String[] args) { int startX = 1; int startY = 1; int endX = 5; int endY = 6; Queue<Node> queue = new LinkedList<>(); boolean[][] visited = new boolean[maze.length][maze[0].length]; Node startNode = new Node(startX, startY, 0); queue.offer(startNode); visited[startX][startY] = true; while (!queue.isEmpty()) { Node node = queue.poll(); int x = node.x; int y = node.y; int step = node.step; if (x == endX && y == endY) { System.out.println(step); break; } for (int i = 0; i < 4; i++) { int nextX = x + direction[i][0]; int nextY = y + direction[i][1]; if (nextX >= 0 && nextX < maze.length && nextY >= 0 && nextY < maze[0].length && maze[nextX][nextY] == 0 && !visited[nextX][nextY]) { queue.offer(new Node(nextX, nextY, step + 1)); visited[nextX][nextY] = true; } } } } static class Node { int x; int y; int step; public Node(int x, int y, int step) { this.x = x; this.y = y; this.step = step; } } } ``` 在上述代码中,我们使用了一个Node类来表示迷宫中的每个节点,其中包含了x和y坐标以及当前步数step。我们使用一个队列来进行BFS搜索,并且使用一个二维布尔数组visited来记录每个节点是否已经被访问过。 我们从起点开始,将其加入队列中,并将其visited值设为true。然后不断从队列中取出节点进行搜索,直到队列为空或者找到终点为止。对于每个节点,我们尝试向四个方向扩展,如果扩展出来的节点在迷宫范围内、不是墙、没有被访问过,就将其加入队列中,并将visited值设为true。 最终,如果搜索到了终点,就输出步数并停止搜索。如果队列为空仍然没有找到终点,说明终点不可达。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值