摘要: /* POJ 3984 迷宫问题 BFS */ #include <cstdio> int mapn[5][5]; int x[100], y[100], pre[100]; int front = 0;//队首 int rear = 1;//队尾指向首元素的后一位 int dx[4] = { 1, 阅读全文
posted @ 2015-12-18 12:24 tan90丶 阅读(127) 评论(0) 推荐(0) 编辑