使用Floodfill填充ASCII图像

时间:2014-03-30 12:32:55

标签: java recursion flood-fill

您好我想用Floodfill-alg填充ASCII图像。我总是收到错误消息,我不知道为什么。

这是我的Main方法,输入Image:

    public static void main(String[] args){
    Scanner sc = new Scanner("read 12\n+++++++++++++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#++\n++++++++++#--\nfill 2 2 d");
    String read, numberst;
    String [] image;
    int number = 0, count = 0;
    Boolean error = false;

    read = sc.next();
    numberst = sc.next();

    if ((read + numberst).matches("read[0-9]+")) {
        number = Integer.parseInt(numberst);
    } else {
        error = true;
    }

    image = new String[number];

    System.out.println("image");

    while (sc.hasNextLine() && (error == false) && (count <= number - 1)) {
        image[count] = sc.next();
        //System.out.println(image[count] + " " + count);
        count++;
        if (image[0].length() != image[count - 1].length())  {
            error = true;
            System.out.println("INPUT MISMATCH");
        }
    }

    System.out.println("fill");
    while(sc.hasNextLine() && (error == false) && sc.hasNext()) {
        String fill = "", xstr = "", ystr = "", cstr;

        fill = sc.next();

        if (sc.hasNext()) {
            xstr = sc.next();   
        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }

        if (sc.hasNext() && error == false){
            ystr = sc.next();
        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }

        if (sc.hasNext() && error == false){
            cstr = sc.next();

            if ((fill + xstr + ystr + cstr).matches("fill[0-9]+[0-9]+.")) {
            int x = Integer.parseInt(xstr), y = Integer.parseInt(ystr);
            char c = cstr.charAt(0);

            if (x <= image[0].length() && y <= number) {
                fill(image, x, y, c);
            } else {
                error = true;
                System.out.println("OPERATION FAILED");
            }
            //System.out.println(fill + x + y + c);
        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }

        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }
        //System.out.println(error);
    }

    if (error == false) {
        for (int i = 0; i < number; ++i) {
        System.out.println(image[i]);
        }
    }
}

以下是我填写的代码方法:

    public static void fill(String[] image, int x, int y, char c) {
    char old = (image[y]).charAt(x);
    Boolean r, l, o, u;

    image[y] = (image[y]).substring(0, x) + c + (image[y]).substring(x + 1);


    if ((x + 1) < image[0].length()) {
        r = (image[y].charAt(x + 1) == old);
    } else {
        r = false;
    }
    if ((x - 1) >= 0) {
        l = (image[y].charAt(x - 1) == old);
    }else {
        l = false;
    }
    if ((y - 1) >= 0) {
        o = (image[y - 1].charAt(x) == old);
    } else {
        o = false;
    }
    if ((y + 1) <= image.length) {
        u = (image[y + 1].charAt(x) == old);
    } else {
        u = false;
    }


    if (r == true) {
        fill(image, x + 1, y, c); //According to the Error message it looks like the Java Compiler switches between this and...
    }
    if (l == true) {
        fill(image, x - 1, y, c); //this line.
    }
    if (o == true) {
        fill(image, x, y - 1, c);
    }
    if (u == true) {
        fill(image, x, y + 1, c);
    }


}

错误讯息:

    at AsciiShop.fill(AsciiShop.java:122)
    at AsciiShop.fill(AsciiShop.java:119)
    at AsciiShop.fill(AsciiShop.java:122)
    at AsciiShop.fill(AsciiShop.java:119)
    at AsciiShop.fill(AsciiShop.java:122)
    at AsciiShop.fill(AsciiShop.java:119)
    at AsciiShop.fill(AsciiShop.java:122)
    at AsciiShop.fill(AsciiShop.java:119)
    at AsciiShop.fill(AsciiShop.java:122)

我不知道为什么这不起作用。 我希望你能帮助我。

1 个答案:

答案 0 :(得分:2)

首先,您正在执行FloodFill错误:在继续操作之前,您应该检查是否继续正确的方向;您首先检查所有方向,然后继续进行操作。这导致已经被替换的处理位置导致无限循环。 第二个是if ((y + 1) <= image.length)中的错误类型 - 应该有严格的<

fill方法的最小更改将是:

public static void fill(String[] image, int x, int y, char c) {
    char old = (image[y]).charAt(x);

    image[y] = (image[y]).substring(0, x) + c + (image[y]).substring(x + 1);

    if ((x + 1) < image[0].length() && 
            image[y].charAt(x + 1) == old) {
        fill(image, x + 1, y, c);
    }

    if ((x - 1) >= 0 &&
            image[y].charAt(x - 1) == old) {
        fill(image, x - 1, y, c);
    }

    if ((y - 1) >= 0 &&
            image[y - 1].charAt(x) == old) {
        fill(image, x, y - 1, c);
    }

    if ((y + 1) < image.length &&
            image[y + 1].charAt(x) == old) {
        fill(image, x, y + 1, c);
    }
}

但我仍然建议以更“标准”的方式实现FloodFill(请参阅http://en.wikipedia.org/wiki/Flood_fill),传递替换颜色并为每个已处理的节点明确检查它 - 它使代码更加健壮和清晰

查看示例(您的main方法几乎完好无损,fill已重写):

public static void main(String[] args) {
    Scanner sc = new Scanner(
            "read 12\n"
            + "+++++++++++++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#++\n"
            + "++++++++++#--\n"
            + "fill 2 2 d");
    String read, numberst;
    String[] image;
    int number = 0, count = 0;
    Boolean error = false;

    read = sc.next();
    numberst = sc.next();

    if ((read + numberst).matches("read[0-9]+")) {
        number = Integer.parseInt(numberst);
    } else {
        error = true;
    }

    image = new String[number];

    System.out.println("image");

    while (sc.hasNextLine() && (error == false) && (count <= number - 1)) {
        image[count] = sc.next();
        // System.out.println(image[count] + " " + count);
        count++;
        if (image[0].length() != image[count - 1].length()) {
            error = true;
            System.out.println("INPUT MISMATCH");
        }
    }

    System.out.println("fill");
    while (sc.hasNextLine() && (error == false) && sc.hasNext()) {
        String fill = "", xstr = "", ystr = "", cstr;

        fill = sc.next();

        if (sc.hasNext()) {
            xstr = sc.next();
        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }

        if (sc.hasNext() && error == false) {
            ystr = sc.next();
        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }

        if (sc.hasNext() && error == false) {
            cstr = sc.next();

            if ((fill + xstr + ystr + cstr).matches("fill[0-9]+[0-9]+.")) {
                int x = Integer.parseInt(xstr), y = Integer.parseInt(ystr);
                char c = cstr.charAt(0);

                if (x <= image[0].length() && y <= number) {
                    fill(image, x, y, image[y].charAt(x), c);
                } else {
                    error = true;
                    System.out.println("OPERATION FAILED");
                }
                // System.out.println(fill + x + y + c);
            } else {
                error = true;
                System.out.println("INPUT MISMATCH");
            }

        } else {
            error = true;
            System.out.println("INPUT MISMATCH");
        }
        // System.out.println(error);
    }

    if (error == false) {
        for (int i = 0; i < number; ++i) {
            System.out.println(image[i]);
        }
    }
}

public static void fill(final String[] image, final int x, final int y, final char oldValue, final char newValue) {
    if (oldValue == image[y].charAt(x)) {
        image[y] = image[y].substring(0, x) + newValue + image[y].substring(x + 1);

        if ((x + 1) < image[y].length()) {
            fill(image, x + 1, y, oldValue, newValue);
        }

        if ((x - 1) >= 0) {
            fill(image, x - 1, y, oldValue, newValue);
        }

        if ((y - 1) >= 0) {
            fill(image, x, y - 1, oldValue, newValue);
        }

        if ((y + 1) < image.length) {
            fill(image, x, y + 1, oldValue, newValue);
        }
    }
}