733. Flood Fill
An image is represented by an m x n integer grid image where image[i][j] represents the pixel value of the image.
You are also given three integers sr, sc, and newColor. You should perform a flood fill on the image starting from the pixel image[sr][sc].
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), and so on. Replace the color of all of the aforementioned pixels with newColor.
Return the modified image after performing the flood fill.
1 |
|
Example 2:
1 | Input: image = [[0,0,0],[0,0,0]], sr = 0, sc = 0, newColor = 2 |
解法
难点在于理解题目,参考维基百科的Flood fill,理解题目之后,解法就出来了
判断 sr、sc 有效的情况下,且数组[sr][sc] == oldValue 时,赋值为newValue 即可
代码如下:
1 |
|
或者
1 |
|