首页 > 代码库 > LeetCode-Word Search
LeetCode-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 =[ [‘A‘,‘B‘,‘C‘,‘E‘], [‘S‘,‘F‘,‘C‘,‘S‘], [‘A‘,‘D‘,‘E‘,‘E‘]]word = "ABCCED", -> returns true,word = "SEE", -> returns true,word = "ABCB", -> returns false.
public class Solution { public boolean exist(char[][] board, String word) { boolean result=false; int m=board.length; int n=board[0].length; for(int i=0; i<m ; i++){ for(int j=0; j<n; j++){ if(dfs(board, word, i, j, 0)){ result=true; } } } return result; } public boolean dfs(char[][] board, String word, int i, int j, int k){ int m = board.length; int n = board[0].length; if(i<0 || j<0 || i>=m || j>=n){ return false; } if(board[i][j] == word.charAt(k)){ char temp = board[i][j]; board[i][j]=‘#‘; if(k==word.length()-1){ return true; } else if(dfs(board, word, i-1, j, k+1) || dfs(board, word, i+1, j, k+1) || dfs(board, word, i, j-1, k+1) || dfs(board, word, i, j+1, k+1)){ return true; } board[i][j]=temp; } return false; }}
LeetCode-Word Search
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。