繁体   English   中英

回溯迷宫算法在C语言中开始错误

[英]Backtracking Maze Algorithm Starts off Wrong in C

过去一周一直在从事这个项目。 除了初始化/分配和步进功能外,我的教授都向我提供了一切...

目标不是创建迷宫,而是解决它。 我第一次编译它时,它似乎运行良好并且可以通过它……然后,它将开始做一些时髦的事情,跳过一堵墙,然后停在那里……

试图修复它并经历它。 最终它没有现在应该采取的第一步。 试图了解我在做什么错或为什么我现在在maze_client中没有正确执行第一步... //提供,但是如果需要我可以更改一下

#include <stdio.h>
#include "maze.h"

int main(int argc, char **argv)
{
   FILE *fp = fopen(argv[1], "r");
   Maze maze = initializeMaze(fp);
   findPath(maze);// first step.. It was provided to me. It basically calls step() 
   displayMaze(maze);
   return 0;
}

步骤功能...我做了另一个不是for循环的东西,我试图看看是否也可以摆脱这些废话。 不能正常工作只是让它从其他地方随机开始...第二个文件结束尝试了,我屏蔽了每个函数...似乎在我的if(getBottom)语句中...我可以写下我的逻辑如果需要,我希望它执行的步骤...

static int step(Maze maze, int row, int column)
{
  //TODO: FINISH THE BACKTRACKING ALGORITHM
  int i,j;
  //int st;
  int successful;
 //maze->maze[row][column] = st;

 if(getVisit(maze, row, column) == maze->maze[maze->finishX][maze->finishY])
 {
   displayMaze(maze);
   return 1;
 }

 displayMaze(maze);
 getchar();
 // getVisit(maze, row, column);//gets pos
 for(i = -2; i <= 2; ++i)
 {
   for(j = -2; j <= 2; ++j)
   {
    //i*i != j*j dont move in diagonal
     //row+i >= 0 && row + i < n, bounds checking
     //col+j >= 0 && col+j < n, bounds checking
    if(i*i != j*j && row+i >= 0 && column+j >= 0 ) 
    {
      getVisit(maze, row, column);//Gets position 
        if(getCellHasTop(maze, row, column + 1) != 1)//Wall check, Zero meaning NO WALL
        {
                 //++st;
                 //gets that position and sees if it is unvisited... 
                 //need a test if it is visited.. if it has been visited before.. Set current spot as BAD_PATH
                 if(getVisit(maze,row,column+j) == UNVISITED)
                 {
                    setVisit(maze, row, column+1, GOOD_PATH);
                  successful = step(maze, row, column + 1);
                 }
              // if(getVisit(maze, row, column+j) == GOOD_PATH)
              //   {
              //   setVisit(maze, row-i, column, BAD_PATH);
          //   successful = step(maze, row, column+j);
            //      }
                 if(successful)
                   return 1;  
        }
        if(getCellHasLeft(maze,row - 1,column) != 1)
        {
                 if(getVisit(maze, row-1, column) == UNVISITED)
                 {
                 setVisit(maze, row-1, column, GOOD_PATH);
                 successful = step(maze, row-1, column);
                 }

              //   if(getVisit(maze, row-i, column) == GOOD_PATH)
               //  {
              //setVisit(maze, row-i, column, BAD_PATH);
              // successful = step(maze, row-i, column);
               //  }
                 //++st;
                 if(successful)
                return 1;
        }
        if(getCellHasRight(maze,row + 1, column) != 1)
        {
                 if(getVisit(maze, row+1, column) == UNVISITED)
                 {
                  setVisit(maze, row+1, column, GOOD_PATH);
                  successful = step(maze, row+1, column);
                 }

               //  if(getVisit(maze, row+i, column) == GOOD_PATH)
  //               {
    //            setVisit(maze, row+i, column, BAD_PATH);
      //            successful = step(maze, row+i, column);
        //        }
                 //++st;
                 if(successful)
                return 1;
        }
        if(getCellHasBottom(maze, row, column - 1) != 1)
        {
                 if(getVisit(maze, row, column-1) == UNVISITED)
                 {
                  setVisit(maze, row, column-1, GOOD_PATH);
                  successful = step(maze, row, column-1);
                 }

      //           if(getVisit(maze, row, column-j) == GOOD_PATH)
        //       {
          //        setVisit(maze, row, column-j, BAD_PATH);
            //    successful = step(maze, row, column-j);
              //   }
                 //++st;
                 if(successful)
                return 1;  
        }  
        //PART 2
        //Do not do else if because then each one would require... That is last resort
    if(getCellHasTop(maze, row, column + 1) == 0)//Wall check
        {
                 //++st;
                 //a test if it is visited.. if it has been visited before.. Set current spot as BAD_PATH   
                 if(getVisit(maze,row, column+1) == GOOD_PATH)
               {
                  setVisit(maze, row, column, BAD_PATH);
                  successful = step(maze, row, column + 1);
                }
                if(successful)
              return 1;  
        }
       if(getCellHasLeft(maze,row - 1,column) == 0)
        {
                 if(getVisit(maze, row-1, column) == GOOD_PATH)
                 {
               setVisit(maze, row, column, BAD_PATH);
                successful = step(maze, row-1, column);
                }
   //++st;
               if(successful)
            return 1;
 }
if(getCellHasRight(maze,row + 1, column) == 0)
        {
                if(getVisit(maze, row+1, column) == GOOD_PATH)
                {
                 setVisit(maze, row, column, BAD_PATH);
                 successful = step(maze, row+1, column);
                }
                 //++st;
      if(successful)
     return 1;
       }
       if(getCellHasBottom(maze, row, column - 1) == 0)
   {
                if(getVisit(maze, row, column-1) == GOOD_PATH)
 {
                  setVisit(maze, row, column, BAD_PATH);
                  successful = step(maze, row, column-1);
                }
                 //++st;
                 if(successful)
              return 1;  
       }  
        //Part 3
       if(getCellHasRight(maze, row + 1, column) != 0 && getCellHasLeft(maze,row - 1, column) != 0)// If there is a wall at those locationsZZ
        {
                if(getVisit(maze,row, column+1) == BAD_PATH)
                 {
                 setVisit(maze, row, column, BAD_PATH);
      successful = step(maze, row, column-1); 
                 }
                 if(successful)
                return 1;
 }
       if(getCellHasTop(maze, row, column + 1) != 0 && getCellHasBottom(maze, row, column - 1) != 0)
   {
                 if(getVisit(maze, row-1, column) == BAD_PATH)
                 {
                 setVisit(maze, row, column, BAD_PATH);
                  successful = step(maze, row+1, column);
                }
               if(successful)
              return 1;
     }
        if(getCellHasTop(maze, row, column +1) != 0 && getCellHasBottom(maze, row, column - 1) != 0)
      {
              if(getVisit(maze, row+1, column) == BAD_PATH)
           {
         setVisit(maze, row, column, BAD_PATH);
             successful = step(maze, row-1, column);
              }
         if(successful)
      return 1;
       }
      }  
     } 
     }
      displayMaze(maze);
      getchar();
    return 0;
    }

我认为您的问题出在这样的代码中:

    if(getCellHasTop(maze, row, column + 1) != 1)//Wall check, Zero meaning NO WALL
    {
             //++st;
             //gets that position and sees if it is unvisited... 
             //need a test if it is visited.. if it has been visited before.. Set current spot as BAD_PATH
             if(getVisit(maze,row,column+j) == UNVISITED)
             {
                setVisit(maze, row, column+1, GOOD_PATH);
              successful = step(maze, row, column + 1);
             }
          // if(getVisit(maze, row, column+j) == GOOD_PATH)
          //   {
          //   setVisit(maze, row-i, column, BAD_PATH);
      //   successful = step(maze, row, column+j);
        //      }
             if(successful)
               return 1;  
    }

首先,您要从-2迭代到+2。 但是我认为迷宫细胞是连续的,因此您不应该这样做。 相反,请执行以下操作:首先,测试行col以确保它们在迷宫中是有效位置。 接下来,测试当前单元格的位,以查看是否允许您向上运动或执行任何方向操作。 然后测试以查看目标单元格是否有效。 然后测试以查看目标单元格是否已被您通过的路径所阻挡。 然后跳进去。

enum {
    TOP_BLOCKED    = 0x01,
    RIGHT_BLOCKED  = 0x02,
    BOTTOM_BLOCKED = 0x04,
    LEFT_BLOCKED   = 0x08,
};

#define ABOVE(r,c)     (r),((c)+1)
#define BELOW(r,c)     (r),((c)-1)
#define LEFT_OF(r,c)   ((r)-1),(c)
#define RIGHT_OF(r,c)  ((r)+1),(c)

#define IN_MAZE(m,r,c) ((r)>=0 && (c)>=0 && (r)<(m)->rows && (c)<(m)->cols)
#define CELL(m,r,c) ((m)->maze[(r)][(c)])
#define TOP_OPEN(m,r,c) (in_maze(m, r, c) \
                        && !(CELL(m,r,c) & TOP_BLOCKED) 
                        && in_maze(m,ABOVE(r,c)))
#define VISITED(m,r,c) (getVisit(m,r,c) != UNVISITED)


// ... later, in your step function ...

#define POS  row,column

setVisit(maze, POS, GOOD_PATH);

if (TOP_OPEN(maze, POS) && !VISITED(maze, ABOVE(POS)) && step(maze, ABOVE(POS))) {
    // We found a successful path! Stop looking.
    return 1;
}

if (RIGHT_OPEN(maze, POS) ... && step(maze, RIGHT_OF(POS))) {
    return 1;
}

if (BOTTOM_OPEN ...

if (LEFT_OPEN ...
    return 1;
}

// There is no path from here that solves the maze.
setVisit(maze, POS, UNVISITED);
#undef POS

return 0;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM