图的拓扑排序(邻接表实现)

对有向无环图(DAG图进行拓扑排序:将图中的顶点组合成一个现行序列,使得若<x,y>属于DAG图,则x在序列中位于y之前,凡DAG图都有拓扑序列,但是序列可能不同,如果有向图中含有环则不能组成拓扑系列,原因很显然。以下是我的DAG图邻接表的拓扑排序代码(结合上篇的图的临界表查看):

#define Max 100;//结点个数(最大)
int count[Max];//记录入度
int record[Max];//记录拓扑排序编号
int n;//结点个数(实际)
//count[Max]初始化为0
bool tuopu_sort()
{
	int i,temp,top=-1;
	for(i=0;i<n;i++)
		if(count[i]==0){
			count[i]=top;
		      top=i;
		}
	for(i=0;i<n;i++){
		if(top==-1)
			return false;
		else{
		     temp=top;top=count[top];
			 record[i]=temp;
			 grap_down *s=p.gr[temp].po;
			 while(s){
				 if(--count[s->number]==0){
					 count[s->number]=top;
					 top=s->number;
				 }
				 s=s->po;
			 }
		}
	}
	return true;
}

以上是不完整的代码,单核心已给出。

    原文作者:拓扑排序
    原文地址: https://blog.csdn.net/i_want_to_be_a_god/article/details/11953281
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞