Skip to content

Add Flood Fill Algorithm Implementation #2821

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions src/main/java/com/thealgorithms/dynamicprogramming/FloodFill.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
package com.thealgorithms.dynamicprogramming;

/**
* Java program for Flood fill algorithm.
* @author Akshay Dubey (https://github.com/itsAkshayDubey)
*/
public class FloodFill {

/**
* Get the color at the given co-odrinates of a 2D image
*
* @param image The image to be filled
* @param x_co_ordinate The x co-ordinate of which color is to be obtained
* @param y_co_ordinate The y co-ordinate of which color is to be obtained
*/

public static int getPixel(int[][] image, int x_co_ordinate, int y_co_ordinate) {

return image[x_co_ordinate][y_co_ordinate];

}

/**
* Put the color at the given co-odrinates of a 2D image
*
* @param image The image to be filed
* @param x_co_ordinate The x co-ordinate at which color is to be filled
* @param y_co_ordinate The y co-ordinate at which color is to be filled
*/
public static void putPixel(int[][] image, int x_co_ordinate, int y_co_ordinate, int new_color) {

image[x_co_ordinate][y_co_ordinate] = new_color;

}


/**
* Fill the 2D image with new color
*
* @param image The image to be filed
* @param x_co_ordinate The x co-ordinate at which color is to be filled
* @param y_co_ordinate The y co-ordinate at which color is to be filled
* @param new_color The new color which to be filled in the image
* @param old_color The old color which is to be replaced in the image
* @return
*/
public static void floodFill(int[][] image, int x_co_ordinate, int y_co_ordinate, int new_color, int old_color) {
if(x_co_ordinate >= 0 && y_co_ordinate >= 0 && getPixel(image, x_co_ordinate, y_co_ordinate) == old_color) {

putPixel(image, x_co_ordinate, y_co_ordinate, new_color);
floodFill(image, x_co_ordinate + 1, y_co_ordinate, new_color, old_color);
floodFill(image, x_co_ordinate - 1, y_co_ordinate, new_color, old_color);
floodFill(image, x_co_ordinate, y_co_ordinate + 1, new_color, old_color);
floodFill(image, x_co_ordinate, y_co_ordinate - 1, new_color, old_color);
floodFill(image, x_co_ordinate + 1, y_co_ordinate - 1, new_color, old_color);
floodFill(image, x_co_ordinate - 1, y_co_ordinate + 1, new_color, old_color);
floodFill(image, x_co_ordinate + 1, y_co_ordinate + 1, new_color, old_color);
floodFill(image, x_co_ordinate - 1, y_co_ordinate - 1, new_color, old_color);


}

}

/**
* This method will print the 2D image matrix
*
* @param image The image to be printed on the console
*/
public static void printImageArray(int[][] image) {

for(int i=0 ; i<image.length ; i++) {
for(int j=0 ; j<image[0].length ; j++) {

System.out.print(image[i][j]+" ");
}

System.out.println();
}

}

// Driver Program
public static void main(String[] args) {


//Input 2D image matrix
int[][] image = {
{0,0,0,0,0,0,0},
{0,3,3,3,3,0,0},
{0,3,1,1,5,0,0},
{0,3,1,1,5,5,3},
{0,3,5,5,1,1,3},
{0,0,0,5,1,1,3},
{0,0,0,3,3,3,3}
};

floodFill(image,2,2,2,1);

/* Output ==>
* 0 0 0 0 0 0 0
0 3 3 3 3 0 0
0 3 2 2 5 0 0
0 3 2 2 5 5 3
0 3 5 5 2 2 3
0 0 0 5 2 2 3
0 0 0 3 3 3 3
* */

//print 2D image matrix
printImageArray(image);
}

}