[leetcode]79.word search

LeetCode 79单词搜索的解决方案
博客给出了LeetCode 79题单词搜索的解决方案。通过定义一个Solution类,使用深度优先搜索(DFS)算法,在二维字符数组中查找是否存在指定的单词。代码中使用布尔型二维数组记录字符是否被使用,通过递归调用DFS函数进行搜索。
class Solution {
    boolean[][] used;
    public boolean exist(char[][] board, String word) {
        used = new boolean[board.length][board[0].length];
        for(int i = 0; i < board.length; i++) {
            for(int j = 0; j < board[i].length; j++) {
                if (board[i][j] == word.charAt(0))
                    if(DFS(board, word, i, j, 0))
                        return true;
                else
                    continue;
            }
        }
        return false;
    }
    
    public boolean DFS(char[][] board, String word, int i, int j, int index) {
        if (i < 0 || j < 0 || i >= board.length || j >= board[i].length || word.charAt(index) != board[i][j] || used[i][j]) {
            return false;
        }
        else if (index == word.length() - 1) {
            return true;
        } else {
            used[i][j] = true;
            if(DFS(board, word, i, j+1, index+1) || DFS(board, word, i+1, j, index+1) || DFS(board, word, i, j-1, index+1) || DFS(board, word, i-1, j, index+1)) {
                return true;
            } else {
                used[i][j] = false;
                return false;
            }
        }
    }
    
}

  

 

转载于:https://www.cnblogs.com/aviatorjeremy/p/9566804.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值