题解列表

筛选

迷宫问题 (C++代码)可AC

摘要:解题思路:利用BFS解决最短路径参考代码: #include <iostream> using namespace std; struct note{ int x;    //横坐标 i……