深搜打印路径

给出1,0代表的图,1代表可走,0代表不能通过

输出从给定起始点到终点路径

代码:

#include<bits/stdc++.h>
using namespace std;
int ex,ey,bx,by;
int n,m,maps[66][66];
int dx[5]= {-1,1,0,0};
int dy[5]= {0,0,-1,1};
int way[999][3]= {0};
bool is[100][100];
bool flag;
bool check(int x,int y)
{
    if(!maps[x][y])return false;
    if(x<1||x>n||y<1||y>m)return false;
    return true;
}
void dfs(int dep,int x,int y)
{
    int tx,ty;
    if(x==ex&&y==ey)
    {
        cout<<'('<<bx<<","<<by<<')';//输出路径
        for(int i=1; i<dep; i++)
            cout<<"->"<<'('<<way[i][1]<<","<<way[i][2]<<')';
        cout<<endl<<endl;
        flag=true;
        return;
    }
    else{
        for(int i=1;i<=4;i++){
            tx=x+dx[i];
            ty=y+dy[i];
            if(check(tx,ty)&&!is[tx][ty]){
                way[dep][1]=tx;
				way[dep][2]=ty;
                is[tx][ty]=true;
                dfs(dep+1,tx,ty);
                is[tx][ty]=false;
            }
        }
    }
}
int main()
{
    cin>>m>>n;
	for(int i=1;i<=m;i++)
		for(int j=1;j<=n;j++)
			cin>>maps[i][j];
	cin>>bx>>by;
	cin>>ex>>ey;
	dfs(1,bx,by);
	if(!flag) cout<<"-1"<<endl;
	return 0;

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值