0

我开发了以下 C 程序来找到迷宫中所有可能的路径。它必须穿过迷宫中的每个房间。这就是为什么“54”在此刻被硬编码的原因,因为对于我传入的 8*7 阵列,有 54 个开放的房间。我会解决这个问题并在我重写时动态传递它。但是,我正在寻找一些帮助来提高代码效率 - 它找到了超过 300,000 条可能的路径来完成我正在经过的迷宫,但它运行了将近一个小时。

#include <stdio.h>

#define FALSE 0
#define TRUE 1
#define NROWS 8
#define MCOLS 7

// Symbols:
//  0 = open
// 1 = blocked
// 2 = start
// 3 = goal
// '+' = path

char maze[NROWS][MCOLS] = {

    "2000000",
    "0000000",
    "0000000",
    "0000000",
    "0000000",
    "0000000",
    "0000000",
    "3000011"

};

int find_path(int x, int y, int c, int *t);

int main(void)
{   

    int t = 0;

    if ( find_path(0, 0, 0, &t) == TRUE )
        printf("Success!\n");
    else
        printf("Failed\n");

    return 0;

}

int find_path(int x, int y, int c, int *t)
{
    if ( x < 0 || x > MCOLS - 1 || y < 0 || y > NROWS - 1 ) return FALSE;

    c++;
    char oldMaze = maze[y][x];

    if ( maze[y][x] == '3' && c == 54) 
    {
        *t = *t+1;
        printf("Possible Paths are %i\n", *t);
        return FALSE;
    }

    if ( maze[y][x] != '0' && maze[y][x] != '2' ) return FALSE;

    maze[y][x] = '+';

    if ( find_path(x, y - 1, c, t) == TRUE ) return TRUE;

    if ( find_path(x + 1, y, c, t) == TRUE ) return TRUE;

    if ( find_path(x - 1, y, c, t) == TRUE ) return TRUE;

    if ( find_path(x, y + 1, c, t) == TRUE ) return TRUE;

    maze[y][x] = oldMaze;   
    return FALSE;
}  
4

1 回答 1

0

首先,我没有看到函数返回 TRUE 的任何基本条件,它只会在递归调用自身时返回 TRUE,也就是说,结果总是会打印失败(我认为递归必须有一个基本条件,当发现成功将向上传播..)

其次,您能解释一下方框中的值吗?如0、1、2和3?3是迷宫的尽头还是?...

于 2012-01-26T08:45:15.910 回答