c maze solver 源码
c-迷宫求解器 输入格式:首先提供迷宫的尺寸。 下一行是代理的位置。 下一行是目标的位置。 下一行直到“ $”提供了放置在迷宫中的块的位置。 这些块不能被遍历。 然后提供示例路径。 该路径将被验证,如果无效,则将其修复。 例如: Input: 3x3 [0,0] [2,2] [1,1] [1,0] $ [0,0]->[0,1]->[0,2]->[1,2]->[2,2] Output: ==STAGE 0======================================= The grid has 3 rows and 3 columns. The grid has 2 block(s). The initial cell in the grid is [0,0]. The goal cell in the grid is [2,2]. The proposed ro
用户评论