leetcode-733-easy

发布时间 2023-03-31 20:01:01作者: iyiluo

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 color. 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 color.
Return the modified image after performing the flood fill.

Example 1:

Input: image = [[1,1,1],[1,1,0],[1,0,1]], sr = 1, sc = 1, color = 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, color = 0
Output: [[0,0,0],[0,0,0]]
Explanation: The starting pixel is already colored 0, so no changes are made to the image.
Constraints:

m == image.length
n == image[i].length
1 <= m, n <= 50
0 <= image[i][j], color < 216
0 <= sr < m
0 <= sc < n

思路一:用一个数组记录访问过的坐标,递归遍历所有坐标

    public int[][] floodFill(int[][] image, int sr, int sc, int color) {
        int m = image.length;
        int n = image[0].length;
        int[][] find = new int[m][n];

        fill(image, find, sr, sc, color, image[sr][sc]);

        return image;
    }

    public void fill(int[][] image, int[][] find, int sr, int sc, int color, int oriColor) {
        if (find[sr][sc] == 1) {
            return;
        }

        image[sr][sc] = color;
        find[sr][sc] = 1;

        if (sr - 1 >= 0 && image[sr - 1][sc] == oriColor) {
            fill(image, find, sr - 1, sc, color, oriColor);
        }

        if (sr + 1 <= image.length - 1 && image[sr + 1][sc] == oriColor) {
            fill(image, find, sr + 1, sc, color, oriColor);
        }

        if (sc - 1 >= 0 && image[sr][sc - 1] == oriColor) {
            fill(image, find, sr, sc - 1, color, oriColor);
        }

        if (sc + 1 <= image[0].length - 1 && image[sr][sc + 1] == oriColor) {
            fill(image, find, sr, sc + 1, color, oriColor);
        }
    }