码迷,mamicode.com
首页 > 其他好文 > 详细

矩阵中的路径

时间:2020-02-12 22:33:09      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:OLE   div   pre   base   describe   mtab   close   imsi   int   

题目描述

请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下移动一个格子。如果一条路径经过了矩阵中的某一个格子,则该路径不能再进入该格子。 例如 \begin{bmatrix} a & b & c &e \\ s & f & c & s \\ a & d & e& e\\ \end{bmatrix}\quad???asa?bfd?cce?ese????  矩阵中包含一条字符串"bcced"的路径,但是矩阵中不包含"abcb"路径,因为字符串的第一个字符b占据了矩阵中的第一行第二个格子之后,路径不能再次进入该格子。
 
 
 1 public class Solution {
 2     public boolean dfs(int x, int y, char[] matrix, int rows, int cols, char[] str, int pos, boolean[][]vis) {
 3         int [][]shift = new int[][]{{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
 4         boolean flag = false;
 5         if (pos == str.length) return true;
 6         for (int i = 0; i < 4; ++i) {
 7             int posx = x + shift[i][0];
 8             int posy = y + shift[i][1];
 9             if (flag) return true;
10             if (posx < rows && posy < cols && posx >= 0 && posy >= 0 && !vis[posx][posy]) {
11                 char c = matrix[posx * cols + posy];
12                 if (c == str[pos]) {
13                     vis[posx][posy] = true;
14                     flag = flag || dfs(posx, posy, matrix, rows, cols, str, pos + 1, vis);
15                     vis[posx][posy] = false;
16                 }
17             }
18         }
19         return flag;
20         
21     }
22     public boolean hasPath(char[] matrix, int rows, int cols, char[] str)
23     {
24         
25         boolean [][]vis = new boolean [rows + 1][cols + 1];
26         boolean flag = false;
27         
28         for (int i = 0; i < rows; ++i) {
29             for (int j = 0; j < cols; ++j) {
30                 char c = matrix[i * cols + j];
31                 if(flag) return true;
32                 if (c == str[0]) {
33                     vis[i][j] = true;
34                     flag = flag || dfs(i, j, matrix, rows, cols, str, 1, vis);
35                     vis[i][j] = false;
36                 }
37             }
38         }
39         return flag;
40     }
41 
42 
43 }

 

矩阵中的路径

标签:OLE   div   pre   base   describe   mtab   close   imsi   int   

原文地址:https://www.cnblogs.com/hyxsolitude/p/12300983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!