剑指offer---矩阵中的路径
Posted iwangzhengchao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer---矩阵中的路径相关的知识,希望对你有一定的参考价值。
题目:矩阵中的路径
要求:请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下 移动一个格子。如果一条路径经过了矩阵中的某一个格子,则之后不能再次进入这个格子。 例如 a b c e s f c s a d e e 这样的3 X 4 矩阵中包含一条字符串"bcced"的路径,但是矩阵中不包含"abcb"路径,因为字符串的第一个字符b占据了矩阵中的第一行第二个格子之后,路径不能再次进入该格子。
1 class Solution { 2 public: 3 bool hasPath(char* matrix, int rows, int cols, char* str) 4 { 5 6 } 7 };
解题代码:
1 class Solution { 2 public: 3 bool hasPath(char* matrix, int rows, int cols, char* str) { 4 if(matrix == nullptr || rows < 1 || cols < 1 || str == nullptr) 5 return false; 6 7 bool *visited = new bool[rows * cols]; 8 memset(visited, 0, rows * cols); 9 10 int pathLength = 0; 11 for(int row = 0; row < rows; row++){ 12 for(int col = 0; col < cols; col++){ 13 if(hasPathCore(matrix, rows, cols, row, col, str, pathLength, visited)) 14 return true; 15 } 16 } 17 delete[] visited; 18 return false; 19 } 20 private: 21 bool hasPathCore(char* matrix, int rows, int cols, int row, int col, 22 char* str, int &pathLength, bool* visited){ 23 // 到达字符串末尾 24 if(str[pathLength] == ‘