迷宮找出路代碼

#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
相關文章
相關標籤/搜索