标签:ext ret amp 最小值 获得 can int start min 迷宫
走迷宫P81
IDE Qt Creator 4.8.0
#include <stdio.h>
int startx,starty; //起点坐标
int p,q; //终点坐标
int min = 99999999;
int n; //迷宫的行
int m; //迷宫的列
int a[51][51];
int book[51][51];
void dfs(int x,int y,int step);
int main()
{
printf("Hello World!\n");
printf("请输入迷宫的大小\n");
scanf("%d %d",&n,&m);
printf("请输入迷宫\n");
for(int i = 1;i <= n;i++)
{
for(int j = 1;j <= m;j++)
{
scanf("%d",&a[i][j]);
}
}
printf("请输入起点坐标:\n");
scanf("%d %d",&startx,&starty);
printf("请输入终点坐标:\n");
scanf("%d %d",&p,&q);
book[startx][starty] = 1;
dfs(startx,starty,0);
printf("最短步骤为:%d",min);
return 0;
}
void dfs(int x,int y,int step)
{
//通过一个数组来获得下一步可以走的坐标
int next[4][2] = {
{0,1}, //向右走
{1,0}, //向下走
{0,-1}, //向左走
{-1,0} //向上走
};
int k;
int tx,ty;
//判断是否到达终点
if((x == p) && (y == q))
{
if(step < min)
{
//更新最小值
min = step;
}
return ;
}
for(k = 0;k <= 3;k++)
{
tx = x + next[k][0];
ty = y + next[k][1];
//判断改点是否越界
if(tx < 1 || tx > n || ty < 1 || ty > n)
{
continue;
}
//判断该点是否已经在路径中或是障碍物
if((book[tx][ty] == 0) && (a[tx][ty] == 0))
{
book[tx][ty] = 1; //标记该点已经走过
dfs(tx,ty,step+1);
book[tx][ty] = 0;
}
}
return ;
}
标签:ext ret amp 最小值 获得 can int start min 迷宫
原文地址:https://www.cnblogs.com/Manual-Linux/p/10295581.html