写一个递归函数即可。因为规定不能走已经走过的路,所以定义一个rows*cols大小的boolean数组,用来表示当前结点是否已经走过。在遍历过程中还要用到回溯,因为如果一条路没走下去,那么这条路就要把状态更新为没走过。
递归的终止条件:row<0,col<0,row>=rows,col>=cols,isvisted[row*cols+col]==true,str[len]!=matrix[row*cols+col]满足其中一个就返回false。如果遍历到了len==str.length-1都没有返回false,那么就返回true。
递归方式,由于说了路径可以上下左右,那么递归函数就分别有(row+1,col)(row-1,col)(row,col+1)(row,col-1)四种不同的情况。
public class Solution {
public boolean hasPath(char[] matrix, int rows, int cols, char[] str)
{
if(matrix==null||matrix.length==0||rows<1||cols<1){
return false;
}
boolean[] isvisted=new boolean[rows*cols];
for(boolean v:isvisted){
v=false;
}
int len=0;
for(int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
if(dfs(matrix,rows,cols,i,j,len,str,isvisted)){
return true;
}
}
}
return false;
}
public boolean dfs(char[] matrix,int rows,int cols,int row,int col,int len,char[] str,boolean[] isvisted){
if(row<0||col<0||row>=rows||col>=cols||isvisted[row*cols+col]==true||str[len]!=matrix[row*cols+col]){
return false;
}
if(len==str.length-1){
return true;
}
boolean haspath=false;
isvisted[row*cols+col]=true;
haspath=dfs(matrix,rows,cols,row+1,col,len+1,str,isvisted)||dfs(matrix,rows,cols,row-1,col,len+1,str,isvisted)||
dfs(matrix,rows,cols,row,col+1,len+1,str,isvisted)||dfs(matrix,rows,cols,row,col-1,len+1,str,isvisted);
if(!haspath){
isvisted[row*cols+col]=false;
}
return haspath;
}
}