79:单词搜索
This commit is contained in:
parent
3ee434d4ec
commit
14d254b497
119
src/main/java/leetcode/editor/cn/WordSearch.java
Normal file
119
src/main/java/leetcode/editor/cn/WordSearch.java
Normal file
@ -0,0 +1,119 @@
|
||||
//给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。
|
||||
//
|
||||
// 单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "AB
|
||||
//CCED"
|
||||
//输出:true
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "SE
|
||||
//E"
|
||||
//输出:true
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "AB
|
||||
//CB"
|
||||
//输出:false
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// m == board.length
|
||||
// n = board[i].length
|
||||
// 1 <= m, n <= 6
|
||||
// 1 <= word.length <= 15
|
||||
// board 和 word 仅由大小写英文字母组成
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 进阶:你可以使用搜索剪枝的技术来优化解决方案,使其在 board 更大的情况下可以更快解决问题?
|
||||
// Related Topics 数组 回溯 矩阵
|
||||
// 👍 973 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
//79:单词搜索
|
||||
public class WordSearch{
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new WordSearch().new Solution();
|
||||
}
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public boolean exist(char[][] board, String word) {
|
||||
|
||||
String str = Arrays.deepToString(board);
|
||||
for (int i = 0; i < word.length(); i++) {
|
||||
if (str.indexOf(word.charAt(i)) == -1) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < board.length; i++) {
|
||||
for (int j = 0; j < board[0].length; j++) {
|
||||
if (board[i][j] == word.charAt(0)) {
|
||||
if (dfs(board, word, i, j, 0, new int[board.length][board[0].length])) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 深度优先搜索
|
||||
* @param board 传入的二维字符网格
|
||||
* @param word 目标字符串
|
||||
* @param i 起点 i 坐标
|
||||
* @param j 起点 j 坐标
|
||||
* @param index 遍历到word的哪一个位置了
|
||||
* @param visit 访问数组,记录哪些地方已经走过
|
||||
* @return
|
||||
*/
|
||||
private boolean dfs(char[][] board, String word, int i, int j, int index, int[][] visit) {
|
||||
|
||||
if (i < 0 || i >= board.length || j < 0 || j >= board[0].length
|
||||
|| board[i][j] != word.charAt(index) || visit[i][j] == 1) {
|
||||
return false;
|
||||
}
|
||||
if (index == word.length() - 1) {
|
||||
return true;
|
||||
}
|
||||
visit[i][j] = 1;
|
||||
int[][] direction = new int[][]{{i - 1, j}, {i + 1, j}, {i, j - 1}, {i, j + 1}};
|
||||
for (int[] d : direction) {
|
||||
int[][] copy = new int[visit.length][visit[0].length];
|
||||
for (int k = 0; k < visit.length; k++) {
|
||||
copy[k] = Arrays.copyOf(visit[k], visit[0].length);
|
||||
}
|
||||
if (dfs(board, word, d[0], d[1], index + 1, copy)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
43
src/main/java/leetcode/editor/cn/WordSearch.md
Normal file
43
src/main/java/leetcode/editor/cn/WordSearch.md
Normal file
@ -0,0 +1,43 @@
|
||||
<p>给定一个 <code>m x n</code> 二维字符网格 <code>board</code> 和一个字符串单词 <code>word</code> 。如果 <code>word</code> 存在于网格中,返回 <code>true</code> ;否则,返回 <code>false</code> 。</p>
|
||||
|
||||
<p>单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/11/04/word2.jpg" style="width: 322px; height: 242px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
|
||||
<strong>输出:</strong>true
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/11/04/word-1.jpg" style="width: 322px; height: 242px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "SEE"
|
||||
<strong>输出:</strong>true
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/15/word3.jpg" style="width: 322px; height: 242px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCB"
|
||||
<strong>输出:</strong>false
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>m == board.length</code></li>
|
||||
<li><code>n = board[i].length</code></li>
|
||||
<li><code>1 <= m, n <= 6</code></li>
|
||||
<li><code>1 <= word.length <= 15</code></li>
|
||||
<li><code>board</code> 和 <code>word</code> 仅由大小写英文字母组成</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>进阶:</strong>你可以使用搜索剪枝的技术来优化解决方案,使其在 <code>board</code> 更大的情况下可以更快解决问题?</p>
|
||||
<div><div>Related Topics</div><div><li>数组</li><li>回溯</li><li>矩阵</li></div></div>\n<div><li>👍 973</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user