leetcode------130. 被围绕的区域【1】

原题描述:https://leetcode-cn.com/problems/surrounded-regions/description/

给定一个二维的矩阵,包含 'X' 和 'O'字母 O)。

找到所有被 'X' 围绕的区域,并将这些区域里所有的 'O' 用 'X' 填充。

示例:

X X X X
X O O X
X X O X
X O X X

运行你的函数后,矩阵变为:

X X X X
X X X X
X X X X
X O X X

解释:

被围绕的区间不会存在于边界上,换句话说,任何边界上的 'O' 都不会被填充为 'X'。 任何不在边界上,或不与边界上的 'O' 相连的 'O' 最终都会被填充为 'X'。如果两个元素在水平或垂直方向相邻,则称它们是“相连”的。

遗憾的是最后一个用例没有通过!

class Solution {
	public:
		int NN=1000;
		int res[1000][1000]= {
			0
		};
		vector checked;
		set quanquan;
		void solve(vector>& board) {

			int N=board.size();
			if(N==0) return;
			int M=board[0].size();
			cout<::iterator it=quanquan.begin();
							for(int k=0; k>& board) { //除了flag方法,其余方向是ok
			//left 1,right 2,up3 down 4
			int ss;
			ss=i*NN+j;

			quanquan.insert(ss);
			// left
			ss=i*NN+j-1;
			//cout<

网上优秀代码

class Solution {
int dep,wid;
    char[][]map;
    public void dsf(int depth, int width) {
        if(depth<0||depth>=dep||width<0||width>=wid||map[depth][width]!='O')return;
        map[depth][width]='Q';
        dsf(depth-1,width);
        dsf(depth+1,width);
        dsf(depth,width-1);
        dsf(depth,width+1);
    }
 
    public void solve(char[][] board) {
        map=board;
        dep=board.length;
        if(dep==0)return;
        wid=board[0].length;
        for(int i=0;i

 

你可能感兴趣的:(程序片段)