迷宫找出路代码

#include <stdio.h> #include <stdlib.h> #define M 6 //迷宫的实际行 #define N 8 //迷宫的实际列 #define MAXSIZE 64 //栈大小 typedef struct { int x; int y; }item_t; typedef struct { int x; //当前点的坐标 int y; i
相关文章
相关标签/搜索