JAVA:实现Boundary Fill边界填充算法
package com.thealgorithms.dynamicprogramming;
public class BoundaryFill {
/**
* 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