输入n个结点的无向图和一个结点k,按照字典需输出用结点1到k的所有路径。
首先从k开始dfs将所有与之连通的结点标记,若1位被标记则无解。
然后从结点1开始dfs,只对和k连通的结点进行。找到之后输出。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| #include<iostream> #include<cstring> using namespace std; const int maxn=25; int a[maxn],des,cnt; bool g[maxn][maxn],vis[maxn]; void dfs(int v){ vis[v]=true; for(int u=1;u<maxn;u++) if(g[u][v]&&!vis[u]) dfs(u); return; } void search(int cur){ if(a[cur]==des){ cnt++; for(int i=0;i<=cur;i++){ if(i) cout<<" "; cout<<a[i]; } cout<<endl; return; } for(int i=1;i<maxn;i++){ if(g[a[cur]][i]&&vis[i]){ a[cur+1]=i; vis[i]=false; search(cur+1); vis[i]=true; } } return; } int main(){ ios::sync_with_stdio(false); int t=0; while(cin>>des){ cout<<"CASE "<<++t<<":"<<endl; memset(a,0,sizeof(a)); memset(g,0,sizeof(g)); memset(vis,0,sizeof(vis)); int u,v; while(cin>>u>>v){ if(!u&&!v) break; g[u][v]=g[v][u]=true; } cnt=0; a[0]=1; vis[1]=false; dfs(des); if(!vis[1]) goto END; search(0); END: cout<<"There are "<<cnt<<" routes from the firestation to streetcorner "<<des<<"."<<endl; } return 0; }
|
** 本文迁移自我的CSDN博客,格式可能有所偏差。 **