733. Flood Fill

733. Flood Fill

问题描述:
An image is represented by a 2-D array of integers, each integer representing the pixel value of the image (from 0 to 65535).

Given a coordinate (sr, sc) representing the starting pixel (row and column) of the flood fill, and a pixel value newColor, “flood fill” the image.

To perform a “flood fill”, consider the starting pixel, plus any pixels connected 4-directionally to the starting pixel of the same color as the starting pixel, plus any pixels connected 4-directionally to those pixels (also with the same color as the starting pixel), and so on. Replace the color of all of the aforementioned pixels with the newColor.

At the end, return the modified image.
Example 1:

Input: 
image = [[1,1,1],[1,1,0],[1,0,1]]
sr = 1, sc = 1, newColor = 2
Output: [[2,2,2],[2,2,0],[2,0,1]]
Explanation: 
From the center of the image (with position (sr, sc) = (1, 1)), all pixels connected 
by a path of the same color as the starting pixel are colored with the new color.
Note the bottom corner is not colored 2, because it is not 4-directionally connected
to the starting pixel.

分析:一个简单的搜索问题,将输入的点附近能到达的所有的点的value替换为newColor。使用深搜。
要注意的是本题搜索的条件是:在初始点4个方向上的同颜色的点才访问,不同颜色的不访问。

class Solution {
public:
    int v[50][50]={0};
    int scolor=0;
    vector<vector<int>> floodFill(vector<vector<int>>& image, int sr, int sc, int newColor) {
        scolor = image[sr][sc];
        dfs(image,sr,sc,newColor);
            return image;
    }
    void dfs(vector<vector<int>>& image,int sr,int sc,int newColor){
        if(sr<0||sr>=image.size()||sc<0||sc>=image[0].size()||image[sr][sc]!=scolor)return ;//超过边//界 value为0
        if(v[sr][sc]==1)return;//已经换色
        v[sr][sc]=1;
        //cout<<sr<<" "<<sc<<endl;
        if(image[sr][sc]==scolor)
        image[sr][sc]=newColor;//换色
        dfs(image,sr+1,sc,newColor);
        dfs(image,sr,sc+1,newColor);
        dfs(image,sr-1,sc,newColor);
        dfs(image,sr,sc-1,newColor);
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值