爱莉清
发布时间:2017-02-21 12:47:48
本程序通过栈的机制(先进后出)来走迷宫。原理如下:int buff[11][11] = { {1,1,1,1,1,1,1,1,1,1,1}, {1,0,1,1,0,1,0,1,1,0,0}, {1,0,1,1,0,1,0,1,0,0,0}, {1,0,0,1,0,0,0,0,0,1,0}, {1,0,1,1,0,1,0,1,1,0,0}, {1,0,1,1,0,1,0,0.........【阅读全文】
发布时间:2017-02-20 17:52:15
代码如下:点击(此处)折叠或打开#include <stdio.h>typedef struct point{ int x; int y; int Step;}Point;.........【阅读全文】