1. 首页
  2. 编程语言
  3. 其他
  4. 数据结构迷宫问题

数据结构迷宫问题

上传者: 2019-01-13 22:08:00上传 TXT文件 4.03KB 热度 34次
数据结构 迷宫问题 电子书代码C++ 杭电 #include using namespace std; struct DataType { int x; //行 int y; //列 int pre; //方向 }; struct move { int x; int y; } move[4]={{0,1},{1,0},{0,-1},{-1,0}}; //移动 struct LinkNode { DataType data;
用户评论