An image is represented by an m x n integer grid image where imagei represents the pixel value of the image.
<!--more-->
You are also given three integers sr, sc, and newColor. You should perform a flood fill on the image starting from the pixel imagesr.
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.
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) (i.e., the red pixel), all pixels connected by a path of the same color as the starting pixel (i.e., the blue pixels) 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.
Example 2:
Input: image = [[0,0,0],[0,0,0]], sr = 0, sc = 0, newColor = 2
Output: [[2,2,2],[2,2,2]]
难点在于理解题目,参考维基百科的Flood fill,理解题目之后,解法就出来了
判断 sr、sc 有效的情况下,且数组sr == oldValue 时,赋值为newValue 即可
代码如下:
class Solution {
func floodFill(_ image: [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int) -> [[Int]] {
if image[sr][sc] == newColor {
return image
}
let oldColor = image[sr][sc]
var newImage = image
return floodFillAlgorithem(&newImage, sr, sc, newColor, oldColor)
}
func floodFillAlgorithem(_ image: inout [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int, _ oldColor: Int) -> [[Int]] {
image[sr][sc] = newColor
if (sr > 0) && (image[sr-1][sc] == oldColor) {
floodFillAlgorithem(&image, sr-1, sc, newColor, oldColor)
}
if (sc > 0) && (image[sr][sc-1] == oldColor) {
floodFillAlgorithem(&image, sr, sc-1, newColor, oldColor)
}
if (sr < image.count - 1) && (image[sr+1][sc] == oldColor) {
floodFillAlgorithem(&image, sr+1, sc, newColor, oldColor)
}
if (sc < image[sr].count - 1) && (image[sr][sc+1] == oldColor) {
floodFillAlgorithem(&image, sr, sc+1, newColor, oldColor)
}
return image
}
}
或者
class Solution {
func floodFill(_ image: [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int) -> [[Int]] {
if image[sr][sc] == newColor {
return image
}
let oldColor = image[sr][sc]
var newImage = image
floodFillAlgorithem(&newImage, sr, sc, newColor, oldColor)
return newImage
}
func floodFillAlgorithem(_ image: inout [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int, _ oldColor: Int) {
if sr < 0 ||
sc < 0 ||
sr >= image.count ||
sc >= image[sr].count ||
image[sr][sc] != oldColor {
return
}
image[sr][sc] = newColor
floodFillAlgorithem(&image, sr-1, sc, newColor, oldColor)
floodFillAlgorithem(&image, sr, sc-1, newColor, oldColor)
floodFillAlgorithem(&image, sr+1, sc, newColor, oldColor)
floodFillAlgorithem(&image, sr, sc+1, newColor, oldColor)
}
}
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。