题解 1672: 迷宫问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

迷宫问题-题解(C++代码)

摘要:大神快来看看错哪了50% ```cpp #include using namespace std; const int maxn = 100+10; struct node{ int x……

迷宫问题BFS解法

摘要:```cpp 利用队列的方法做 #include using namespace std; const int N=110; char a[N][N];//该数组用来接收字符 int ……