解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h> //就是一个字符串关系型的拓扑排序 using namespace std; struct node{ int in;//入度 string info;//顶点信息 }; map<string,vector<string> > mp; map<string,int> inmp; //顶点信息 queue<string> q;//队列 vector<vector<string> > ans; vector<string> t; int main(){ int n,m; string str1,str2; cin>>n; while(n--){ cin>>m; for(int i=0;i<m;i++){ cin>>str1>>str2; mp[str1].push_back(str2); inmp[str2]++; inmp[str1]; } map<string,int>::iterator it=inmp.begin(); while(it!=inmp.end()){ if(it->second==0){ q.push(it->first); break; } it++; } string str=""; while(!q.empty()){ string tm=q.front(); t.push_back(tm); q.pop(); for(int i=0;i<mp[tm].size();i++){ str=mp[tm][i]; inmp[str]--; if(inmp[str]==0) q.push(str); } } ans.push_back(t); t.clear(); mp.clear(); inmp.clear(); queue<string> empty; swap(empty, q); } for(int i=0;i<ans.size();i++){ for(int j=0;j<ans[i].size();j++){ cout<<ans[i][j]<<" "; } cout<<endl; } return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:645 |
C二级辅导-阶乘数列 (C语言代码)浏览:642 |
【偶数求和】 (C++代码)浏览:785 |
C语言程序设计教程(第三版)课后习题8.2 (Java代码)浏览:2287 |
C语言程序设计教程(第三版)课后习题9.4 (Java代码)浏览:1446 |
A+B for Input-Output Practice (C++代码)浏览:632 |
不会做的浏览:954 |
C语言考试练习题_排列 (C语言代码)浏览:767 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:648 |