1. 首页
  2. 网络技术
  3. 网络监控
  4. 用数组实现迷宫探索手动和自动

用数组实现迷宫探索手动和自动

上传者: 2020-10-16 19:18:58上传 C文件 5.69KB 热度 16次
#include #include #include #include #include #define MAXSIZE 20 typedef struct { int x; int y; }PosType; typedef struct { int di1; int di2; int di3; int di4; }Direct; typedef int MazeElem; typedef struct { MazeElem color[MAXSIZE+
下载地址
用户评论