数据结构迷宫问题 数据结构 迷宫问题 电子书代码C++ 杭电 #include using namespace std; struct DataType { int x; //行 int y; //列 int pre; //方向 }; struct move { int x; int y; } move[4]={{0