摘要: 数据结构-迷宫 // 迷宫问题.cpp : 定义控制台应用程序的入口点。 #include "stdafx.h" #define M 4 #define N 4 #define MaxSize 100 int mg[M + 2][N + 2] = { {1,1,1,1,1,1}, {1,0,0,0,0,1}, {1 阅读全文
posted @ 2017-09-18 22:43 tuqunfu 阅读(167) 评论(0) 推荐(0)