拓扑排序 ---- HDU 1285

喜欢而已 提交于 2020-02-25 18:56:51

代码如下;

#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
using namespace std;
const int maxn = 1000;
int in[maxn];
vector<int>V[maxn];

int main()
{
int n,m,x,y;
while(cin>>n>>m){
memset(in,0,sizeof(in));
for(int i=1;i<=n;i++) V[i].clear();
while(m--)
{
cin>>x>>y;
V[x].push_back(y);//构图
in[y]++;// 存入度
}

priority_queue<int,vector<int>,greater<int> > q;// 优先数列,小的先出
for(int i=1;i<=n;i++)
{
if(in[i]==0)
{

q.push(i);
}
}
int flag=1;
while(!q.empty())
{
int xx=q.top();q.pop();
if(flag)
{
cout<<xx;
flag=0;
}
else cout<<" "<<xx;
for(int i=0;i<(int)V[xx].size();i++)
{
in[V[xx][i]]--;
if(in[V[xx][i]]==0)
{
q.push(V[xx][i]);
}
}

}
cout<<endl;
}
return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!