第十届蓝桥杯大赛软件类省赛 Java 大学 B试题 E: 迷宫 解答

这篇博客介绍了两种使用 Java 实现的广度优先搜索(BFS)方法来解决迷宫问题。第一种方法通过队列进行BFS搜索,第二种方法结合了栈和队列,当某个分身首先到达出口时打印路径。博客内容包括算法思路、代码实现及注释,适合初学者理解BFS算法。
摘要由CSDN通过智能技术生成

方法一:转自here

package com.company;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main {
    static int maxRow = 30, maxColumn = 50;
    // 第一位为行数, 第二位为列数 D<L<U<R
    static int[][] dir = new int[][]{{1,0},{0,-1},{0,1},{-1,0}};
    static String[][] answer = new String[maxRow][maxColumn];
    static char[][] array = new char[maxRow][maxColumn];
    static int[][] len = new int[maxRow][maxColumn];
    static int[][] visit = new int[maxRow][maxColumn];

    public static void bfs(int x, int y) {
        Queue<Node> queue = new LinkedList<>();
        queue.add(new Node(x, y));
        visit[x][y] = 1;
        answer[0][0] = "";
        while(!queue.isEmpty()) {
            Node node = queue.poll();
            // 把此点的周围四个点计算一遍稍后遍历
            for(int i = 0; i < 4; i++) {
                int newx = node.x + dir[i][0];
                int newy = node.y + dir[i][1];
                if(newx >= 0 && newx < maxRow && newy >= 0 && newy < maxColumn && visit[newx][newy] == 0 && array[newx][newy] == '0') {
                    // 这个点走过了 不能重复走
                    visit[newx][newy] = 1;
                    // 起始点到此点的路径长度
                    len[newx][newy] = len[node.x][node.y] + 1;
                    // 起始点到此点的路径(以集合中的方向排序表示)
                    answer[newx][newy] = answer[node.x][node.y] + i;
                    queue.add(new Node(newx, newy));
                }
            }
        }
    }
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        for(int i = 0; i < maxRow; i++) {
            String str = in.next();
            for (int j = 0; j < maxColumn; j++) {
                array[i][j] = str.charAt(j);
            }
        }

        bfs(0, 0);

        // 得到到终点的路径
        String st = answer[maxRow-1][maxColumn-1];
        // 输出此路径长度
        System.out.println(len[maxRow-1][maxColumn-1]);
        //System.out.println(st.charAt(5));
        for (int k = 0; k < st.length() ; k++) {
            char c = st.charAt(k);
            if (c == '0') {
                System.out.print("D");
            } else if (c == '1') {
                System.out.print("L");
            } else if (c == '2') {
                System.out.print("R");
            } else if (c == '3') {
                System.out.print("U");
            }
        }
        in.close();
    }
}

class Node{
    int x, y;

    Node(int x, int y){
        this.x = x;
        this.y = y;
    }
}

方法二:转自here

import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
import java.util.Stack;
/******************************************************************************************
 * 新面孔:字符串逆序方法	 sb.reverse().toString()
 * 		   队列接口方法   queue.offer(newNode)
 * 		   字符相减转整型  s.charAt(j) - '0';   求j位置字符对应的ascii码值
 * @Description: 广度优先搜索:https://blog.csdn.net/raphealguo/article/details/7523411
 *               https://blog.csdn.net/u011815404/article/details/79582206
 ******************************************************************************************
 */
public class E_Maze {
	/*
	 * 深度优先可以这样想,一个人迷路,遇到很多分叉路口,他只有一个人,并且想走出去,所以只能一个个尝试,
	 * 一条道路走到黑,发现到头了,然后再拐回去走刚才这条路的其他分叉路口,最后发现这条路的所有分叉路口走完了
	 * ,选择另外一条路继续以上操作,直到所有的路都走过了。
	 * 广度优先并不是这样,一个人迷路,但是他有技能(分身术)它遇到分叉路口,不是选一个走,而是分身多个人都试试,
	 * 比如有A、B、C三个分叉路口,它A路走一步,紧接着B路也走一步,然后C路也赶紧走一步,步伐整齐统一,直到所有的路走过了。
	 */ public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		try {
			String s = 
					  "01010101001011001001010110010110100100001000101010"
					+ "00001000100000101010010000100000001001100110100101"
					+ "01111011010010001000001101001011100011000000010000"
					+ "01000000001010100011010000101000001010101011001011"
					+ "00011111000000101000010010100010100000101100000000"
					+ "11001000110101000010101100011010011010101011110111"
					+ "00011011010101001001001010000001000101001110000000"
					+ "10100000101000100110101010111110011000010000111010"
					+ "00111000001010100001100010000001000101001100001001"
					+ "11000110100001110010001001010101010101010001101000"
					+ "00010000100100000101001010101110100010101010000101"
					+ "11100100101001001000010000010101010100100100010100"
					+ "00000010000000101011001111010001100000101010100011"
					+ "10101010011100001000011000010110011110110100001000"
					+ "10101010100001101010100101000010100000111011101001"
					+ "10000000101100010000101100101101001011100000000100"
					+ "10101001000000010100100001000100000100011110101001"
					+ "00101001010101101001010100011010101101110000110101"
					+ "11001010000100001100000010100101000001000111000010"
					+ "00001000110000110101101000000100101001001000011101"
					+ "10100101000101000000001110110010110101101010100001"
					+ "00101000010000110101010000100010001001000100010101"
					+ "10100001000110010001000010101001010101011111010010"
					+ "00000100101000000110010100101001000001000000000010"
					+ "11010000001001110111001001000011101001011011101000"
					+ "00000110100010001000100000001000011101000000110011"
					+ "10101000101000100010001111100010101001010000001000"
					+ "10000010100101001010110000000100101010001011101000"
					+ "00111100001000010000000110111000000001000000001011"
					+ "10000001100111010111010001000110111010101101111000";
			int[][] labyrinth = new int[30][50];
			for (int i = 0; i < 30; i++) {
				for (int j = 0; j < 50; j++) {
					labyrinth[i][j] = s.charAt(50 * i + j) - '0'; //字符相减转整型
				}
			}
			System.out.println(BFS(labyrinth, 30, 50));
		} catch (Exception e) {
			input.close();
		}
	}

	public static String BFS(int[][] labyrinth, int row, int column) {
		int[][] stepArr = { { -1, 0 }, { 0, 1 }, { 0, -1 }, { 1, 0 } };	
		String[] direction = { "U", "R", "L","D"}; 
		int[][] visit = new int[row][column];// 标记是否已经访问过
		StringBuilder sb = new StringBuilder();
		Node node = new Node(0, 0, -1, -1, 0, null);
		Queue<Node> queue = new LinkedList<Node>();	
		Stack<Node> stack = new Stack<Node>();
		queue.offer(node);
		while (!queue.isEmpty()) {
			Node head = queue.poll();	//head存队首元素
			stack.push(head); // 用于回溯路径
			visit[head.x][head.y] = 1;
			for (int i = 0; i < 4; i++) {	//尝试4个方向
				int x = head.x + stepArr[i][0];
				int y = head.y + stepArr[i][1];
				String d = direction[i];
				// exit
				if (x == row - 1 && y == column - 1 && labyrinth[x][y] == 0 && visit[x][y] == 0) {	//某个分身首先走到了出口
					// 打印路径
					Node top = stack.pop();	//当前节点
					sb.append(d);
					sb.append(top.direction);
					int preX = top.preX;
					int preY = top.preY;
					while (!stack.isEmpty()) {
						top = stack.pop();
						if (preX == top.x && preY == top.y) {
							if (top.direction != null)
								sb.append(top.direction);
							preX = top.preX;
							preY = top.preY;
						}

					}
					return sb.reverse().toString();
				}
				// bfs
				if (x >= 0 && x < row && y >= 0 && y < column && labyrinth[x][y] == 0 && visit[x][y] == 0) {
					Node newNode = new Node(x, y, head.x, head.y, head.step + 1, d);
					queue.offer(newNode);
				}
			}
		}
		return null;
	}
}

class Node {	//创建节点类,功能是记录当前节点,上一个节点和走的方向
	int x, y;
	int step;
	int preX, preY;
	String direction;

	Node(int x, int y, int preX, int preY, int step, String direction) {
		this.x = x;
		this.y = y;
		this.preX = preX;
		this.preY = preY;
		this.step = step;
		this.direction = direction;
	}
}

注:
两个都是转载,这两份代码我都挺喜欢的,已经很努力的想读懂了,但是有些细节上还是不太懂,bfs算法思路理解,但是一到实现的细节就…回头继续看看,就酱吧…

用excel手绘走出迷宫的tql 链接

附:BFS专题部分(注:该链接来自破站,有194min,是怕俺忘记链接了,就放在这里了,大家不用点开)
【算法思想】广度优先搜索(对bfs一窍不通的可以康康这个,6min,听容易理解的)

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值