public void floodFill(Bitmap bitmap, Point point, int i, int j) {
int k = bitmap.getWidth();
int l = bitmap.getHeight();
if (i != j) {
LinkedList linkedlist = new LinkedList();
所以我有這個顏色填充方法: public int groupedCells(int y, int x, int value)
{
//base state
if (!gSetup.isValidLocation(y, x) ||
gSetup.getCell(y, x).value != value ||
gSetup.getCell(y, x).cM
我試圖製作一個填充圖片的android應用程序。這裏是洪水的白色區域中的代碼: public class floodfill {
public void flood(Bitmap bitmap, int x, int y){
int color;
int red;
int green;
int blue;
color =
我正在與我的項目paiting /着色features.Can任何人都可以解釋這個洪水填充算法,以及這是如何工作的?這個洪水填充隊列?什麼是隊列意味着什麼(在這個算法中)? public class FloodFill {
public void floodFill(Bitmap image, Point node, int targetColor,
int rep