zoukankan      html  css  js  c++  java
  • Leetcode 08.02 迷路的机器人 缓存加回溯

      回溯算法,加缓存过滤已走过的无效路径:

        public final List<List<Integer>> pathWithObstacles(int[][] obstacleGrid) {
            Stack<List<Integer>> stack = new Stack<List<Integer>>();
            if (isHighWay(obstacleGrid, 0, 0, stack, new int[obstacleGrid.length][obstacleGrid[0].length])) {
                return new ArrayList<List<Integer>>(stack);
            }
            return new ArrayList<List<Integer>>();
        }
    
        public final boolean isHighWay(int[][] obstacleGrid, int x, int y, Stack<List<Integer>> stack, int[][] cache) {
            if (x >= obstacleGrid.length || y >= obstacleGrid[0].length || obstacleGrid[x][y] == 1) {
                return false;
            }
            List<Integer> listStep = new ArrayList<Integer>(2);
            listStep.add(x);
            listStep.add(y);
            if (x == obstacleGrid.length - 1 && y == obstacleGrid[0].length - 1) {
                stack.push(listStep);
                return true;
            }
            if (cache[x][y] != 0) {
                return false;
            }
            stack.push(listStep);
            if (isHighWay(obstacleGrid, x, y + 1, stack, cache) || isHighWay(obstacleGrid, x + 1, y, stack, cache)) {
                return true;
            }
            stack.pop();
            cache[x][y] = 1;
            return false;
        }

      吐槽一下 Leetcode 的蜜汁难度:有些题很简单,却是中等;有些题很难,却是简单。

  • 相关阅读:
    两种方法生成随机字符串
    cmd命令总结
    NOI前乱写
    多校模拟9
    字符串 口胡
    HEOI2020游记
    省选模拟104
    省选模拟103
    省选模拟102
    省选模拟101
  • 原文地址:https://www.cnblogs.com/niuyourou/p/13293891.html
Copyright © 2011-2022 走看看