面试题12:矩阵中的路径

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

思路:简单dfs,对于当前点,查找周围上下左右四个点,看看是否满足字符相同。

代码:

class Solution {
public:
	bool hasPath(char* matrix, int rows, int cols, char* str)
	{
		//cout << strlen(str) << endl;

		int len = 0;
		bool* vis = new bool[rows*cols];
		memset(vis, false, rows*cols);
		for (int i = 0; i < rows; i++)
		{
			for (int j = 0; j < cols; j++)
			{
				vis[i*cols + j] = true;
				if (matrix[i*cols+j] == str[0] && dfs(matrix, rows, cols, i, j, str, 1, vis))
				{
					return true;
				}
				vis[i*cols + j] = false;
			}
		}
		delete[] vis;
		return false;
	}
	bool dfs(char* matrix, int rows, int cols, int row, int col, char* str, int len, bool* vis)
	{
		if (len == strlen(str)) return true;
		
		int xx[4] = { 0, 0, 1, -1 };
		int yy[4] = { 1, -1, 0, 0 };
		for (int i = 0; i < 4; i++)
		{
			int next_row = row + xx[i];
			int next_col = col + yy[i];
			if (next_row >= 0 && next_row < rows && next_col >= 0 && next_col < cols && matrix[next_row*cols + next_col] == str[len] && vis[next_row*cols + next_col] == false)
			{
				vis[next_row*cols+next_col] = true;
				if (dfs(matrix, rows, cols, next_row, next_col, str, len + 1, vis))
					return true;
				vis[next_row*cols + next_col] = false;
			}
		}

		return false;
		
	}
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Simon|

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值