剑指 Offer 12. 矩阵中的路径

地址https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof/
描述
给定一个 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

答案

class Solution {
    public boolean exist(char[][] board, String word) {
        int rowLen = board.length;
        int columnLen = board[0].length;
        boolean[][] path = new boolean[rowLen][columnLen];
        for (int i = 0; i < rowLen; i++) {
            for (int j = 0; j < columnLen; j++) {
                back(board, path, i, j, word, 0);
                if (tag) {
                    return true;
                }
            }
        }
        return tag;
    }

    //记录目前是否已经包含word
    boolean tag = false;

    //path记录每个格是否使用过,row为方格第几行,column为方格第几列,index为word第几个字符
    public void back(char[][] board,boolean[][] path, int row, int column, String word, int index) {
        if (row < 0 || row >= board.length || column < 0 || column >= board[0].length || path[row][column] ||word.charAt(index) != board[row][column]) {
            return;
        }
        if (index == word.length() - 1) {
            tag = true;
            return;
        }
        if (tag) {
            return;
        }

        path[row][column] = true;
        back(board, path, row - 1, column, word, index + 1);
        back(board, path, row + 1, column, word, index + 1);
        back(board, path, row, column - 1, word, index + 1);
        back(board, path, row, column + 1, word, index + 1);
        path[row][column] = false;

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值