来源Leetcode第79题单词搜索
给定一个二维网格和一个单词,找出该单词是否存在于网格中。
单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中”相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。
示例
board =
[
[“A”‘,”B’,”c’,”E]
[“s’,”F’,”c’,”S”]
[“A’,”D’,”E’,”E’]
]
给定word=” ABCCED”,返回true
给定word=”sEE”,返回true
给定word=”ABCB”,返回fa1se
回溯
来自题解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| public class Solution {
private boolean[][] marked;
private int[][] direction = {{-1, 0}, {0, -1}, {0, 1}, {1, 0}}; private int m; private int n; private String word; private char[][] board;
public boolean exist(char[][] board, String word) { m = board.length; if (m == 0) { return false; } n = board[0].length; marked = new boolean[m][n]; this.word = word; this.board = board;
for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { if (dfs(i, j, 0)) { return true; } } } return false; }
private boolean dfs(int i, int j, int start) { if (start == word.length() - 1) { return board[i][j] == word.charAt(start); } if (board[i][j] == word.charAt(start)) { marked[i][j] = true; for (int k = 0; k < 4; k++) { int newX = i + direction[k][0]; int newY = j + direction[k][1]; if (inArea(newX, newY) && !marked[newX][newY]) { if (dfs(newX, newY, start + 1)) { return true; } } } marked[i][j] = false; } return false; }
private boolean inArea(int x, int y) { return x >= 0 && x < m && y >= 0 && y < n; }
|