题目描述

请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下移动一个格子。如果一条路径经过了矩阵中的某一个格子,则该路径不能再进入该格子。 例如
image.png
矩阵中包含一条字符串”bcced”的路径,但是矩阵中不包含”abcb”路径,因为字符串的第一个字符b占据了矩阵中的第一行第二个格子之后,路径不能再次进入该格子。

  1. class Solution:
  2. def hasPath(self, matrix, rows, cols, path):
  3. # write code here
  4. for i in range(rows):
  5. for j in range (cols):
  6. if matrix[i*cols+j]==path[0]:
  7. if self.findpath(i,j,path[1:],list(matrix),rows,cols):
  8. return True
  9. return False
  10. def findpath(self,i,j,path,matrix,rows,cols):
  11. if i<0 or j<0 or i>rows or j>cols:
  12. return False
  13. if not path:
  14. return True
  15. matrix[i*cols+j]=None
  16. if i+1<rows and matrix[(i+1)*cols+j]==path[0]:
  17. if self.findpath(i+1, j, path[1:], matrix, rows, cols):
  18. return True
  19. if j+1<cols and matrix[i*cols+j+1]==path[0]:
  20. if self.findpath(i, j+1, path[1:], matrix, rows, cols):
  21. return True
  22. if i-1>=0 and matrix[(i-1)*cols+j]==path[0]:
  23. if self.findpath(i-1, j, path[1:], matrix, rows, cols):
  24. return True
  25. if j-1>=0 and matrix[i*cols+j-1]==path[0]:
  26. if self.findpath(i, j-1, path[1:], matrix, rows, cols):
  27. return True
  28. else:
  29. return False