Word Search

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 =

[
  ["ABCE"],
  ["SFCS"],
  ["ADEE"]
]

word = "ABCCED", -> returns true,
word = "SEE", -> returns true,
word = "ABCB", -> returns false.

 

public class Solution {
    public boolean exist(char[][] board, String word) {
        int rows = board.length;
        int cols = board[0].length;
        boolean[][] visit = new boolean[rows][cols];
        for (int i = 0; i < rows; i++) {
        	for (int j = 0; j < cols; j++) {
        		if (dfs(board, word, 0, i, j, visit)) {
        			return true;
        		}
        	}
        }
        return false;
    }

	private boolean dfs(char[][] board, String word, int cnt, int rowindex, int colindex,
			boolean[][] visit) {
		if (cnt == word.length()) {
			return true;
		}
		if (rowindex < 0 || colindex < 0 || rowindex >= board.length || colindex >= board[0].length) {
			return false;
		}
		if (visit[rowindex][colindex])  {
			return false;
		}
		if (board[rowindex][colindex] != word.charAt(cnt)) {
			return false;
		}
		visit[rowindex][colindex] = true;
		boolean res = (dfs(board, word, cnt+1, rowindex+1, colindex, visit)
				|| dfs(board, word, cnt+1, rowindex, colindex+1, visit)
				|| dfs(board, word, cnt+1, rowindex-1, colindex, visit)
				|| dfs(board, word, cnt+1, rowindex, colindex-1, visit));
		visit[rowindex][colindex] = false;
		return res;
	}
}

 

你可能感兴趣的:(search)