My floodfilling algorithm is nearly finished, but there is a small error somewhere, I've spent about 3 hours debugging, but i can't seem to find it!

note: When reading in I use numbers from 0 to 15 to define the walls

1 = top 2 = right 4 = bottom 8 = left (so 13 would mean that the top/bottom/left walls are there)

My Program:

  • It reads in number of fields to calculate the biggest room from (so everything below here is a cycle that gets repeated for the number of fields).

  • Then it gets the room's dimensions

  • Now in the class field, it creates an array of objects (Cell) which store the walls around (left right down up), and a value below 16

  • Now here is where I think the problem comes, reading in values through std::cin

  • and then when everything is read in, it scans for empty (0), and then creates a room, and checks for availeble spaces around it (using the wall-check)

  • and at the end it returns the max value, and we are done.

The input I use:

1
2 2
13 3
15 14

so what happens is is that somewhere, in or the wall-check, or the creation of a object Cell something goes wrong (I think)

Here is my script, and sorry to have to ask something silly like this!

Thanks in advance

    // een simpele floodfill

    #include <stdlib.h>
    #include <iostream>
    #include <bitset>


class Cell {

    private:
      int  kamer, value;
      bool left, right, up, down;

    public:            
      // constructor
      Cell::Cell() {};
      // functions
      bool CanLeft()      { return left ; }
      bool CanRight()     { return right; }
      bool CanDown()      { return down ; }
      bool CanUp()        { return up   ; }
      int  GetRoom()       { return kamer; }
      void SetRoom(int x)  { kamer = x   ; }      
      void SetValue(int x, int room=0) { value  = x;
                             kamer = room;
                             std::bitset<sizeof(int)> bits(value); 
                             if (bits[3]) left  = true;
                             else         left  = false;
                             if (bits[2]) down  = true;
                             else         down  = false;
                             if (bits[1]) right = true;
                             else         right = false;
                             if (bits[0]) up    = true;
                             else         up    = false;
                           }
};

class Field {

    private:
      int Biggest_Chamber;
      int Y;
      int X;
      int temp;
      Cell playfield[][1];

    public:
      // constructor
      Field::Field(int SizeY, int SizeX) {
                    Y = SizeY;
                    X = SizeX;
                    Cell playfield[SizeY-1][SizeX-1];
                    }
      // Create a 2d array and fill it

      void Get_input() {

           for (int Yas = 0; Yas < Y; Yas++){

               for (int Xas = 0; Xas < X; Xas++){

                   std::cin >> temp;
                   playfield[Yas][Xas].SetValue(temp);         
               }
           } 
      };  
      void Start() { Mark(0,0,1); }

      void Mark(int y, int x, int nr) {
                  std::cout << nr;
                  temp = nr;
                  playfield[y][x].SetRoom(nr);
                  if (playfield[y][x].CanLeft())   {
                     if (playfield[y][x-1].GetRoom() != 0) {
                                                    Mark(y, x-1, nr);
                                                    std::cout << nr;
                                                    system("pause");}}
                  if (playfield[y][x].CanDown()) {
                     if (playfield[y+1][x].GetRoom() != 0) {
                                                    Mark(y+1, x, nr);
                                                    std::cout << nr;
                                                    system("pause");}}
                  if (playfield[y][x].CanRight())  {
                     if (playfield[y][x+1].GetRoom() != 0) {
                                                    Mark(y, x+1, nr);
                                                    std::cout << nr;
                                                    system("pause");}}
                  if (playfield[y][x].CanUp())   {
                     if (playfield[y-1][x].GetRoom() != 0) {
                                                    Mark(y-1, x, nr);
                                                    std::cout << nr;
                                                    system("pause");}} 
                  for (int vertical = 0; vertical < Y; vertical++) {
                      for (int horizontal = 0; horizontal < X; horizontal++) {
                          if (playfield[vertical][horizontal].GetRoom() == 0) Mark(vertical, horizontal, nr+1);                   
                      }      
                  }
      }         
      int MaxValue() {
          int counter[temp];
          int max = 0;

          for (int y = 0; y < Y; y++) {
              for (int x = 0; x < X; x++) {
                  counter[playfield[y][x].GetRoom()]++;
              }
          }

          for (int i = 0; i < temp; i++)
          {
              if (counter[i] > max)
                 max = counter[i];
          }

          return max;
     }            
};


    int main() {
    using namespace std;


    int NrKamers;
    int sizeY;
    int sizeX;

    std::cin >> NrKamers;
    for (int i = 0; i < NrKamers; i++){

        std::cin >> sizeY >> sizeX;

        Field floodfield(sizeY, sizeX);
        floodfield.Get_input();
        floodfield.Start();

        std::cout << floodfield.MaxValue() << std::endl;
    }
    return 0;
}
link|improve this question

75% accept rate
1  
What is the error message ? class Field already has a closing brace ( }; ). Is it a typo that you are doing the same again ? – Mahesh May 9 '11 at 7:56
segmentation fault - but through debugging i found out that in somehow runs into an infinite loop at Markeer(int, int, int), what? the ; behind it? – Buster May 9 '11 at 7:57
2  
Translating your variable names and comments to English before posting would be polite; not everyone here understands Dutch. – larsmans May 9 '11 at 8:09
true, my bad changing now – Buster May 9 '11 at 8:11
1  
To me it sounds as you are still confused about input-output issues. Try to divide your problem into two parts - one that reads input and just prints how it is (to test if you are reading correctly) and another that takes a hand-crafted puzzle directly (without reding input) and tries to solve it. – missingno May 9 '11 at 13:43
show 1 more comment
feedback

1 Answer

I have not had much time to deal with the code, but my first impression is that you are not marking (or rather not using the mark) each visited position in the array, so that you move in one direction, and while processing that other position you return back to the original square. Consider that the sequence of tests where: left, right, up, down; and that you start in the top-left corner:

You cannot move left, but you can move right. At that second recursion level you can move left and go back to square one. Then you cannot move left, but you can move right, so you go back to square two, from which you move to square one... infinitedly.

Before you move to the next square you have to mark your square as visited, and also check that the square you intend to move to has not been visited in the current run.

The segmentation fault is the result of infinite recursion, after you exhaust the stack.

link|improve this answer
That could be, but in my semantics i have covered that, uhm, in the playfield[y][x].setNr(nr) i change the room status of that cell from 0 to nr, and then whenever i want to go do a different cell, i check if it's roomstatus == 0, but it could very well be that the syntax says different.. – Buster May 9 '11 at 8:28
It is really hard to follow as it is, you might want to consider providing the whole code somewhere else (ideone?), I am not seeing the setNr method anywhere. If you refer to setRoom(nr), that is modifying the internal kamer attribute, but that attribute is not used to control the recursion – David Rodríguez - dribeas May 9 '11 at 10:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.