简单的迷宫

1.迷宫问题 #include <stdio.h> #include <stdlib.h> #define BOUNDARY 8 #define MAX 255 char table[8][8]; int start_x,start_y; typedef struct Data{     int maze_x;     int maze_y; }data; typedef struct Stack
相关文章
相关标签/搜索