首页 > 其他 > 详细

leetcode JAVA Word Search 难度系数3 3.28

时间:2014-02-01 14:10:00      阅读:394      评论:0      收藏:0      [点我收藏+]

Question:

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 {
    private int row;
	private int col;
    public boolean exist(char[][] board, String word) {
		row = board.length;
		col = board[0].length;
		boolean[][] visited = new boolean[row][col];
		for (int i = 0; i < row; i++) {
			for (int j = 0; j < col; j++) {
				if (dfs(board, word, 0, i, j, visited))
					return true;
			}
		}
		return false;
	}

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


leetcode JAVA Word Search 难度系数3 3.28

原文:http://blog.csdn.net/yiding_he/article/details/18893621

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!