迷宫的最短路径--BFS

1648545-20190709093943775-1094339975.png

import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
class P {
    int x;
    int y;
    public P(int a, int b) {
        this.x = a;
        this.y = b;
    }
}
public class Main {
    static final int INF = -1;
    static char[][] arr;
    static int[][] dis;
    static int[] tempx = { 1, 0, -1, 0 };
    static int[] tempy = { 0, 1, 0, -1 };
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        int sx = 0, sy = 0, gx = 0, gy = 0;
        arr = new char[N][M];
        dis = new int[N][M];
        for (int i = 0; i < N; i++) {                           // 输入 以及得到sx sy 的地址
            String str = sc.next();
            arr[i] = str.toCharArray();
            for (int x = 0; x < str.length(); x++) {
                dis[i][x] = INF;                                            // 把所有位置初始化为INF 初始化
                if (str.charAt(x) == 'S') { 
                    sx = i;
                    sy = x;
                }
                if (str.charAt(x) == 'G') {
                    gx = i;
                    gy = x;
                }
            }
        }
        dis[sx][sy] = 0;                                                                //将起点设置为 0
        Queue<P> que = new LinkedList<P>();                 //创建一个队列
        que.offer(new P(sx, sy));                                           //直接扔到队列里面
//      System.out.println(sx + " " + sy + " " + gx + " " + gy);
        while (que.size() > 0) {
            P p = que.poll();                                                           //poll队列的头
            if (p.x == gx && p.y == gy)                                     //到达终点跳出来
                break;
 
            for (int i = 0; i < 4; i++) {                                          //四个方向
                int nx = p.x + tempx[i];
                int ny = p.y + tempy[i];
 
                if (nx >= 0 && nx < N && ny >= 0 && ny < M && dis[nx][ny] == INF && arr[nx][ny] != '#') {
                    que.offer(new P(nx, ny));
                    dis[nx][ny] = dis[p.x][p.y] + 1;
                }
            }
        }
        System.out.println(dis[gx][gy]);
    }
}

转载于:https://www.cnblogs.com/cznczai/p/11148152.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值