剑指 Offer 12. 矩阵中的路径

剑指 Offer 12. 矩阵中的路径

难度中等

给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。

单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。

例如,在下面的 3×4 的矩阵中包含单词 "ABCCED"(单词中的字母已标出)。

示例 1:

输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"

输出:true

示例 2:

输入:board = [["a","b"],["c","d"]], word = "abcd"

输出:false

提示:

  • 1 <= board.length <= 200

  • 1 <= board[i].length <= 200

  • board 和 word 仅由大小写英文字母组成

注意:本题与主站 79 题相同:https://leetcode-cn.com/problems/word-search/

class Solution {

     public boolean exist(char[][] board, String word) {

            for (int i = 0; i < board.length; i++) {

                for (int j = 0; j < board[i].length; j++) {

                    if (board[i][j] == word.charAt(0)) {

                        // System.out.print(i + "," + j + "=" + word.charAt(0));

                        if (dfs(board, i, j, word,1)) {

                            return true;

                        }

                        // System.out.println("");

                    }

                }

            }

            return false;

        }

        private boolean dfs(char[][] board, int i, int j, String word, int index) {

            if (index == word.length()) {

                return true;

            }

            board[i][j] = '*';

            // System.out.print("," + word.charAt(index));

            boolean result = false;

            if (i > 0) {

                if (board[i - 1][j] == word.charAt(index)) {

                    result = result || dfs(board, i - 1, j, word, index + 1);

                }

            }

            if (j > 0) {

                if (board[i][j - 1] == word.charAt(index)) {

                    result = result || dfs(board, i, j - 1, word, index + 1);

                }

            }

            if (i < board.length - 1) {

                if (board[i + 1][j] == word.charAt(index)) {

                    result = result || dfs(board, i + 1, j, word, index + 1);

                }

            }

            if (j < board[i].length - 1) {

                if (board[i][j + 1] == word.charAt(index)) {

                    result = result || dfs(board, i, j + 1, word, index + 1);

                }

            }

            board[i][j] = word.charAt(index - 1);

            return result;

        }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

时代我西

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值