/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ #include <utility> class Solution { public: /** * @param forest char字符型vector<vector<>> * @return Point类 */ int dx[4] = {0, 0, -1, 1}; // 上下左右四个方向 int dy[4...