Word Search 在一个二维字符矩阵里找单词 @LeetCode

思路:DFS

这道题卡时间卡的很紧,多了一条没用的语句就会TLE。开始时候在exit()里遍历每个节点时,为了直接在board里面记录访问过的元素,我居然每次都新建board二维数组,还要拷贝原来内容到新数组中,铁定TLE。

后来在dfs里面新加了一个参数boolean[][] visited用来记录是否访问过了。这样每次虽然要新建visited数组,但不用拷贝了,但还是TLE。

后来运用我总结的DFS模板,在改变board访问元素之前先保存到一个tmp变量中,在结束递归后还原现场。压线AC!


package Level3;

/**
 * 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 S79 {

	public static void main(String[] args) {
		char[][] board = {{'C','A','A'},{'A','A','A'},{'B','C','D'}};
		String word = "AAB";
		System.out.println(exist(board, word));
	}
	
	public static boolean exist(char[][] board, String word) {
		// 对每一个节点进行深搜
		for(int i=0; i<board.length; i++){
			for(int j=0; j<board[0].length; j++){
				if(dfs(board, word, 0, i, j)){
					return true;
				}
			}
		}
		return false;
    }
	
	// dfs搜索
	public static boolean dfs(char[][] board, String word, int index, int x, int y){
		if(index == word.length()-1 && word.charAt(index)==board[x][y]){
			return true;
		}
		
		if(word.charAt(index) != board[x][y]){
			return false;
		}
		
		char tmp = board[x][y];		// 保存原始值
		board[x][y] = '.';
		boolean b1 = false, b2 = false, b3 = false, b4 = false;
		if(x-1>=0 && board[x-1][y] != '.'){
			b1 = dfs(board, word, index+1, x-1, y);
		}
		if(!b1 && y-1>=0 && board[x][y-1] != '.'){
			b2 = dfs(board, word, index+1, x, y-1);
		}
		if(!b1 && !b2 && x+1<board.length && board[x+1][y] != '.'){
			b3 = dfs(board, word, index+1, x+1, y);
		}
		if(!b1 && !b2 && !b3 && y+1<board[0].length && board[x][y+1] != '.'){
			b4 = dfs(board, word, index+1, x, y+1);
		}
		
		board[x][y] = tmp;			// 还原原始值
		return b1 || b2 || b3 || b4;
	}
}



评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值