int flag = 0;//为1,找到路径,为0,找不到 queue<Coord> start;//用模板 start.push(Coord(sx, sy));//入队 visit[sx][sy] = 1;//表实路径 while (!start.empty()) { int x = start.front().x; int y = start.front().y; start.pop();//把头队列出队 if (x == ex && y == e...