迷宫(一)(DFS & BFS)

//新生训练

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;
int n, m;
bool f;
char mp[15][15];
int vis[15][15];
int dir[4][2] = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}};
bool in(int x, int y)
{
	return 0 <= x && x < n && 0 <= y && y < m;
}
void dfs(int x, int y)
{
	if (mp[x][y] == 'T')
	{
		f = true;
		return;
	}
	if (!in(x, y) || mp[x][y] == '*' || vis[x][y])
	{
		return;
	}
	vis[x][y] = 1;
	for (int i = 0; i < 4; i++)
	{
		int tx = x + dir[i][0];
		int ty = y + dir[i][1];
		dfs(tx, ty);
	}
	return;
}
int main()
{
	cin >> n >> m ;
	for (int i = 0; i < n; i++)
	{
		cin >> mp[i];
	}
	int x, y;
	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < m; j++)
		{
			if (mp[i][j] == 'S')
			{
				x = i;
				y = j;
			}
		}
	}
	dfs(x, y);
	if (f)
	{
		cout << "yes" << endl;
	}
	else
	{
		cout << "no" << endl;
	}
	return 0;
}

//笔者新学的DFS和BFS,练习了一些入门题目;

~~~//仅当笔者个人备忘录使用。

相关推荐
Tadecanlan8 分钟前
[C++面试] explicit面试8问 —— 较难,可简单了解即可
开发语言·c++
the_nov16 分钟前
9.进程信号
linux·c++
程序员黄同学24 分钟前
解释观察者模式,如何实现观察者模式?
前端·算法·观察者模式
Repeat71525 分钟前
日志统计(双指针)
java·数据结构·算法·蓝桥杯·双指针·滑动窗口
独好紫罗兰25 分钟前
洛谷题单3-P5725 【深基4.习8】求三角形-python-流程图重构
开发语言·python·算法
哒宰的自我修养34 分钟前
0.DJI-PSDK开发准备及资料说明(基于DJI经纬M300RTK和M350RTK无人机上使用)
c++·学习·无人机
byte轻骑兵1 小时前
【C++进阶】顺序容器
开发语言·c++
明月看潮生1 小时前
青少年编程与数学 02-016 Python数据结构与算法 01课题、算法
数据结构·python·算法·青少年编程·编程与数学
Easy_Package2 小时前
【QT】构建项目
开发语言·c++·笔记·qt
十五年专注C++开发2 小时前
C++11之std::is_convertible
开发语言·c++