摘要: Pavel loves grid mazes. A grid maze is an n × m rectangle maze where each cell is either empty, or is a wall. You can go from one cell... 阅读全文
posted @ 2018-08-08 23:24 black_hole6 阅读(251) 评论(0) 推荐(0)
摘要: Description定义一个二维数组:int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0,};它表示一个迷宫,其中的1表示墙壁,0表... 阅读全文
posted @ 2018-08-08 14:30 black_hole6 阅读(215) 评论(0) 推荐(0)