摘要: 1 #include 2 #include 3 #include 4 #define n 6 //size of maze 5 using namespace std; 6 7 int grid[n+2][n+2]; //we set the border for the maze 8 struct position //this struct... 阅读全文
posted @ 2017-10-19 21:28 diamondDemand 阅读(203) 评论(0) 推荐(0)