刷题记录:单词搜索

本文记录了在LeetCode中解决单词搜索问题的过程,探讨了如何在二维矩阵中有效查找目标单词,涉及深度优先搜索(DFS)策略和边界判断等关键点。
摘要由CSDN通过智能技术生成

单词搜索

class Solution:
    def exist(self, board, word):
        directions = [[-1, 0], [1, 0], [0, -1], [0, 1]]
        row, col = len(board), len(board[0])
        matrix = [[True] * col for _ in range(row)]
        ans = False
		# 从 i,j 位置开始递归搜索 word 第 idx 个字符
        def backtracking(idx, i, j):
            if idx == len(word): # 搜索成功返回结果
                nonlocal ans
                ans = True
                return
            for direction in directions: # 四个方向分别进行递归搜索
                if 0 <= i+direction[0] < row and 0 <= j+direction[1] < col:
                # 1)下标不能越界
                    if board[i+direction[0]][j+direction[1]] == word[idx] \
                    # 2)字母成功匹配
                            and (matrix[i+direction[0]][j+direction[1]] == True):
                            # 3) 字母未被重复利用    三个条件缺一不可
                        matrix[i+direction[0]][j+direction[1]] = False
                        # 标记字母为 “已经使用”
                        backtracking(idx+1, i+direction[0], j+direction[1])
                        # 从当前位置继续递归搜索
                        matrix[i + direction[0]][j + direction[1]] = True
                        # 回溯后 状态复原
        for i in range(row):
            for j in range(col):
                if board[i][j] == word[0]:
                # 从匹配了第一个字母的位置开始递归搜索
                    matrix[i][j] = False
                    # 标记字母为 “已经使用”
                    backtracking(1, i, j)
                    # 递归搜索
                    matrix[i][j] = True
                    # 搜索失败 状态复原
        return ans
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值