LeetCode【surrounded-regions】
思路:使用dfs判断遍历所有的点,同时在dfs的过程中检查点是否满足要求,并将访问过的点使用数组保存下来,注意返回值通过dfs的参数来返回(这个在深搜递归中挺好用的,如果不能确定何时结束)#include <iostream>#include <string>#include <vector>using namespace std;clas...