java迷宫问题

public class cc {
        public static void main(String[] args) {
            int[][] map = new int[8][7];
            // Construct the maze
            for (int i = 0; i < map.length; i++) {
                map[i][0] = 1;
                map[i][6] = 1;
            }
            for (int j = 0; j < map[0].length; j++) { // Corrected loop boundary
                map[0][j] = 1;
                map[7][j] = 1;
            }
            map[3][1] = 1;
            map[3][2] = 1;
            // Print the maze
            System.out.println("======= 打印迷宫 =======");
            for (int i = 0; i < map.length; i++) {
                for (int j = 0; j < map[i].length; j++) {
                    System.out.print(map[i][j] + "   ");
                }
                System.out.println();
            }
            // Instantiate the maze
            T t1 = new T();
            t1.findWay(map, 1, 1);
            // Print the maze after traversing
            System.out.println("======= 穿越后迷宫 =======");
            for (int i = 0; i < map.length; i++) {
                for (int j = 0; j < map[i].length; j++) {
                    System.out.print(map[i][j] + "   ");
                }
                System.out.println();
            }
        }
    }

    class T {
        // 0: path, 1: obstacle, 2: path taken, 3: dead end
        public boolean findWay(int[][] map, int i, int j) {
            if (map[6][5] == 2) { // Reached the exit
                return true;
            } else {
                if (map[i][j] == 0) {
                    map[i][j] = 2; // Mark the position as taken
                    if (findWay(map, i + 1, j)) {
                        return true;
                    } else if (findWay(map, i, j + 1)) {
                        return true;
                    } else if (findWay(map, i - 1, j)) {
                        return true;
                    } else if (findWay(map, i, j - 1)) {
                        return true;
                    } else {
                        map[i][j] = 3;
                        return false;
                    }
                }
                return false;
            }
        }
    }

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值