#include <stdio.h> #include <string.h> #include <stdlib.h> #define M 9999 int num = 0; char Nway[M]; int N[M][M]; int A= 0, B= 0, C= 0,D= 0; int information[M][M]; typedef int ElemType; typedef struct { int x; int y; } dot; typedef struct { dot data[M]; int top; } Stack; int inN(int x, int y) { if (x>=0&&y>=0&&x<A&&y<B) return 1; else return 0; }//断定点在不在图里面 int EmptyStack(Stack* R) { if (-1 == R->top) return 1; else return 0; }//断定栈是不是空栈 int FullStack(Stack* R) { if (R->top + 1 ==M) return 1; else return 0; }//断定栈是不是满栈 int enter(Stack* S, ElemType x, ElemType y) { if (FullStack(S)) { printf("ջ !\n"); return 0; } S->data[++S->top].x = x; S->data[S->top].y = y; return 1; }//断定栈是不是满栈 int out(Stack* S, ElemType* x, ElemType* y) { if (S->top == -1) return 0; else { S->top--; x = S->data[S->top + 1].x; y = S->data[S->top + 1].y; return 1; } } int main(int X, charY[]) { int i = 0, j, x = 0, y = 0; char a[M]; //制作一个空栈 Stack S = (Stack*)malloc(sizeof(Stack)); S->top = -1; while (1) { gets(a); if (strlen(a) == 0) break; B= strlen(a); for (j = 0; j <B; j++) { N[i][j] = a[j] - '0'; information[i][j] = 0; } i++; } A=i; while (1) { if (inN(x - 1, y) == 1 &&N[x - 1][y] == 0 && information[x - 1][y] == 0) { Nway[num]= 'U'; enter(S, x, y); information[x][y] = 1; x = x - 1;//上 } else { if (inN(x, y + 1) == 1 &&N[x][y + 1] == 0 && information[x][y + 1] == 0) { Nway[num] = 'R'; enter(S, x, y); information[x][y] = 1; y = y + 1;//右 } else { if (inN(x, y - 1) == 1 &&N[x][y - 1] == 0 && information[x][y - 1] == 0) { Nway[num] = 'L'; enter(S, x, y); information[x][y] = 1; y = y - 1;//左 } else { if (inN(x + 1, y) == 1 &&N[x + 1][y] == 0 && information[x + 1][y] == 0) { Nway[num] = 'D'; enter(S, x, y); information[x][y] = 1; x = x + 1; } else { information[x][y] = 1; num=num-2; out(S, &x, &y); } } } } num=num+1; if (x==A-1&&y==B-1) { Nway[num] = '\0'; break; } if (EmptyStack(S)) { printf("NO PASS!\n"); return 0; } } for (i = 0; Nway[i] != '\0';i=i+1) { printf("%c", Nway[i]); } printf("\n"); return 0; }把这个改成求迷宫的路径条数
时间: 2023-11-25 22:06:38 浏览: 188
学生成绩管理
好的,我来解答你的问题。
首先,这段代码是一个使用深度优先搜索算法求解迷宫路径的程序。现在你需要将其改成求迷宫的路径条数。
改成求迷宫的路径条数,需要对原来的程序进行一些修改。
具体来说,我们需要在每次进入一个新的点时,将该点到起点的路径条数累加到该点的路径条数中。假设当前点为 $(x, y)$,我们可以通过以下代码实现:
if (inN(x - 1, y) == 1 && N[x - 1][y] == 0 && information[x - 1][y] == 0) {
Nway[num] = 'U';
enter(S, x, y);
information[x][y] = 1;
N[x - 1][y] += N[x][y]; // 左边的点的路径条数加上当前点的路径条数
x = x - 1; // 上
} else {
// ...
}
同样的,对于其他三个方向也需要进行同样的操作。
最后,当终点被找到时,终点的路径条数即为所求的答案。修改后的代码如下:
阅读全文