矩阵中的路径
给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。
单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。
例如,在下面的 3×4 的矩阵中包含单词 “ABCCED”(单词中的字母已标出)。
示例 1:
输入:board = [[“A”,“B”,“C”,“E”],[“S”,“F”,“C”,“S”],[“A”,“D”,“E”,“E”]], word = “ABCCED”
输出:true
示例 2:
输入:board = [[“a”,“b”],[“c”,“d”]], word = “abcd”
输出:false
public boolean exist(char[][] board, String word) {
if (board.length*board[0].length<word.length()){
return false;
}
int spart = 0;
List<String> flag=new ArrayList<>();
Set<String> bar=new HashSet<>();
for (int i=0;i< board.length;i++){
for (int j=0;j< board[0].length;j++){
ec(board,word,i,j,spart,flag,bar);
}
}
if (flag.isEmpty()){
return false;
}
return true;
}
public void ec(char[][] board, String word,int pre,int after,int spart,List<String> flag,Set<String> bar){
if (board[pre][after]==word.charAt(spart)){
bar.add(pre+"-"+after);
System.out.println(word.charAt(spart));
if (spart==word.length()-1){
flag.add(word);
return;
}
if (board.length!=1&&pre==board.length-1&& !bar.contains((pre-1)+"-"+after)){
ec(board,word,pre-1,after,spart+1,flag,bar);
}
if (board[0].length!=1&&after==board[0].length-1 && !bar.contains(pre+"-"+(after-1))){
ec(board,word,pre,after-1,spart+1,flag,bar);
}
if (pre>=0&&pre<board.length-1 && !bar.contains((pre+1)+"-"+after)){
ec(board,word,pre+1,after,spart+1,flag,bar);
}
if (after>=0&&after<board[0].length-1 && !bar.contains(pre+"-"+(after+1))){
ec(board,word,pre,after+1,spart+1,flag,bar);
}
if(after>0 && !bar.contains(pre+"-"+(after-1))){
ec(board,word,pre,after-1,spart+1,flag,bar);
}
if(pre>0 && !bar.contains((pre-1)+"-"+after)){
ec(board,word,pre-1,after,spart+1,flag,bar);
}
}
bar.remove(pre+"-"+after);
}