UVa10305拓扑排序入门题 可做模板用


#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<cmath>
#include<string>
#include<map>
#include<set>
#include<algorithm>
#include<vector>
#include<stack>
#include<sstream>
#define ll long long
using namespace std;
/**********************************************************/
const int M_NUM_MAX = 100+10;
const int M_INT_MAX = 0x7fffffff;
const double M_DBL_MAX = 1.7976931348623158e+308;
const double M_DBL_MIN = 2.2250738585072014e-308;
bool theMap[M_NUM_MAX][M_NUM_MAX];
int n,m;
int vis[M_NUM_MAX];
stack<int> sk;
/**********************************************************/
int min_2 (int x,int y) {return x<y?x:y;}
int max_2 (int x,int y) {return x>y?x:y;}
bool dfs (int i)
{
  vis[i]=-1;
  for (int j=1;j<=n;j++){
	if (theMap[i][j]){
	  if (vis[j]==-1) return false;//the i-th node have loop
	  else if (vis[j]==0)
		if( !dfs(j) )//if the i-th's son node have loop
		  return false;
	}
  }
  vis[i]=1;
  sk.push (i);
  return true;
}
bool TopoSort ()
{
  for (int i=1;i<=n;i++)
	if (!vis[i])//not be visited
	  if( !dfs(i) )//dfs false
		return false;
  return true;//have toposort
}
/**********************************************************/
int main()
{
  //freopen ("in.txt","r",stdin);
  while (scanf ("%d %d",&n,&m)&&(n||m))
  {
	memset (theMap,0,sizeof (theMap));
	memset (vis,0,sizeof (vis));
	int a,b;
	for (int i=0;i<m;i++){
	  scanf ("%d %d",&a,&b);
	  theMap[a][b]=true;
	}
	if( TopoSort () ){
	  while ( !sk.empty ())
	  {
		printf ("%d",sk.top ());
		sk.pop ();
		if (sk.size ()>0)
		  printf (" ");
		else printf ("\n");
	  }
	}
  }
  return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值