拓扑排序算法实现 Status ToplogicalSort(Graph G){ //对邻接表存储的图G进行拓扑排序,若无回路输出 //其顶点的一个拓扑序列并返回OK,否则返回ERROR FindInDegree(G,indegree); //生成顶点入度数组indegree[] InitStack(S); for(i=0;i<G.vexnum;i++) if (!indegree[i]) Push(S, i); //入度为...