題目原意:
小哼去解救小哈,地圖為矩陣兴猩,上面有許多障礙物期吓。求解救小哈的最短路徑。
代碼:
#include <stdio.h>
int n,m,p,q,min=999999999;
int a[51][51],book[51][51];
void dfs(int x,int y,int step)
{
int next[4][2]={
{0,1},//向右走
{1,0},//向下走
{0,-1},//向左走
{-1,0}//向上走
};
int tx,ty,k;
//判斷是否到達(dá)小哈的位置
if(x==p&y==p)
{
//更新最小值
if(step<min)
min=step;
return;//請(qǐng)注意這里的返回
}
//枚舉四種走法
for(k=0;k<=3;k++)
{
//計(jì)算下一個(gè)點(diǎn)的坐標(biāo)
tx=x+next[k][0];
ty=y+next[k][1];
//判斷是否越界
if(tx<1||tx>n||ty>m||ty<1)
continue;
//判斷該點(diǎn)是否為障礙物或者已經(jīng)在路徑中
if(a[tx][ty]==0&&book[tx][ty]==0)
{
book[tx][ty]=1;
dfs(tx,ty,step+1);
book[tx][ty]=0;
}
}
return ;
}
int main()
{
int i,j,startx,starty;
//讀入n和m倾芝,n為行讨勤,m為列
scanf("%d %d",&n,&m);
//讀入迷宮
for(i=1;i<=n;i++)
for(j=1;j<=m;j++)
scanf("%d",&a[i][j]);
//讀入起點(diǎn)和終點(diǎn)坐標(biāo)
scanf("%d %d %d %d",&startx,&starty,&p,&q);
//從起點(diǎn)開始搜索
book[startx][startx]=1;//標(biāo)記起點(diǎn)己經(jīng)在路徑中晨另,防止后面重復(fù)走
//第一個(gè)參數(shù)是起點(diǎn)的x坐標(biāo)潭千,第二個(gè)參數(shù)是起點(diǎn)y坐標(biāo),第三個(gè)參數(shù)是起始步數(shù)為0
dfs(startx,starty,0);
return 0;
}