Word Search

来源:互联网 发布:贵阳大数据是做什么的 编辑:程序博客网 时间:2024/05/20 11:52

Given a 2D board and a word, find if the word exists in the grid.

The word can be constructed from letters of sequentially adjacent cell, where “adjacent” cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once.

For example,
Given board =

[
[‘A’,’B’,’C’,’E’],
[‘S’,’F’,’C’,’S’],
[‘A’,’D’,’E’,’E’]
]
word = “ABCCED”, -> returns true,
word = “SEE”, -> returns true,
word = “ABCB”, -> returns false.
Subscribe to see which companies asked this question

public class Solution {    //this is a good problem    public boolean exist(char[][] board, String word) {        if(board == null || word == null || word.length() == 0)            return false;        for(int i =0; i < board.length; i ++) {            for(int j = 0; j < board[0].length; j++) {               if(dfs(board, i, j, word, 0, new boolean[board.length][board[0].length]))                    return true;            }        }        return false;    }    private boolean dfs(char[][] board, int i, int j, String word, int index, boolean[][] isVisited) {        if(word.length() == index)            return true;        if(i < 0 || j < 0 || i >= board.length || j >= board[0].length || board[i][j] != word.charAt(index) || isVisited[i][j])            return false;        isVisited[i][j] = true;        if(dfs(board, i - 1, j, word, index + 1, isVisited))            return true;        if( dfs(board, i + 1, j, word, index + 1, isVisited))            return true;        if( dfs(board, i, j - 1, word, index + 1, isVisited))            return true;        if( dfs(board, i, j + 1, word, index + 1, isVisited))            return true;        //this statement is equal to the four statement above        // boolean res = dfs(board, i - 1, j, word, index + 1, isVisited) || dfs(board, i + 1, j, word, index + 1, isVisited) ||         //               dfs(board, i, j - 1, word, index + 1, isVisited) || dfs(board, i, j + 1, word, index + 1, isVisited);        isVisited[i][j] = false;        return false;       // return res;    }}
0 0
原创粉丝点击