摘要: //------------------- 公用的常量和类型 ---------------------------- #include #include #include #include //函数结果状态代码 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #... 阅读全文
posted @ 2010-10-24 23:03 Cranny 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #define N 5 #define M 9 void dfs(int x, int y); void pop(void); void print(void); void push(int x, int y); int maze[N][M]; struct node { int x; int y; }; int to... 阅读全文
posted @ 2010-10-24 22:36 Cranny 阅读(264) 评论(0) 推荐(0) 编辑