剑指 Offer 12. 矩阵中的路径
大约 2 分钟
剑指 Offer 12. 矩阵中的路径
- 标签:数组、回溯、矩阵
- 难度:中等
题目链接
题目大意
给定一个 m * n
大小的二维字符矩阵 board
和一个字符串单词 word
。如果 word
存在于网格中,返回 True
,否则返回 False
。
- 单词必须按照字母顺序通过上下左右相邻的单元格字母构成。且同一个单元格内的字母不允许被重复使用。
解题思路
回溯算法在二维矩阵 board
中按照上下左右四个方向递归搜索。设函数 backtrack(i, j, index)
表示从 board[i][j]
出发,能否搜索到单词字母 word[index]
,以及 index
位置之后的后缀子串。如果能搜索到,则返回 True
,否则返回 False
。backtrack(i, j, index)
执行步骤如下:
- 如果 ,而且
index
已经到达word
字符串末尾,则返回True
。 - 如果 ,而且
index
未到达word
字符串末尾,则遍历当前位置的所有相邻位置。如果从某个相邻位置能搜索到后缀子串,则返回True
,否则返回False
。 - 如果 ,则当前字符不匹配,返回
False
。
代码
class Solution:
def exist(self, board: List[List[str]], word: str) -> bool:
directs = [(0, 1), (0, -1), (1, 0), (-1, 0)]
rows = len(board)
if rows == 0:
return False
cols = len(board[0])
visited = [[False for _ in range(cols)] for _ in range(rows)]
def backtrack(i, j, index):
if index == len(word) - 1:
return board[i][j] == word[index]
if board[i][j] == word[index]:
visited[i][j] = True
for direct in directs:
new_i = i + direct[0]
new_j = j + direct[1]
if 0 <= new_i < rows and 0 <= new_j < cols and visited[new_i][new_j] == False:
if backtrack(new_i, new_j, index + 1):
return True
visited[i][j] = False
return False
for i in range(rows):
for j in range(cols):
if backtrack(i, j, 0):
return True
return False