拓扑排序(一)

作者:追风剑情 发布于:2015-12-6 19:34 分类:Algorithms

拓扑排序与AOV、AOE网主要用来处理工程管理的。


在图论中,一个有向无环图的所有顶点可以排成一个线性序列,当这个线性序列满足以下条件时,称该序列为一个满足图的拓扑次序(topological order)的序列。

(1)图中的每个顶点在序列中只出现一次;

(2)对于图中任意一条有向边(u, v),在该序列中顶点u一定位于顶点v之前。

这样的序列也被称为拓扑序列,对有向图的所有顶点排序,获得拓扑序列的过程就是有向图的拓扑排序(topological sorting)。拓扑排序并不仅仅用于有向图,它是一种利用数据元素中某个属性的偏序关系得到数据元素的全排序序列的方法。


拓扑排序的基本过程:

(1) 从有向图中选择一个没有前驱(入度为0)的顶点,输出这个顶点。

(2) 从有向图中删除该顶点,同时删除由该顶点发出的所有有向边。

重复上述步骤(1)和(2),直到图中不再有入度为0的顶点为止。此时,如果所有的顶点都已经输出,则顺序输出的顶点序列就是一个拓扑序列,如果图中还有未输出的顶点,但是入度都不为0,则说明有向图中存在环路,不能进行拓扑排序。

      

      拓扑排序的现实意义在于,如果按照拓扑序列中的顶点次序安排活动,则在每一项活动开始的时候,能够保证它所依赖的所有前驱活动都已经完成,从而使得整个工程可以顺利进行,不出现冲突。需要注意的是,对于一个有向无环图来说,有时候不只一个有序的拓扑序列。

示例

工程活动关系图

AA.png


AOV.png


AOE.png

代码


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace TopSortTest
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. //测试工程活动拓扑排序
  13. Activity activity = new Activity();
  14. activity.InitGraph();
  15. activity.TopSort();
  16.  
  17. Console.Read();
  18. }
  19. }
  20.  
  21. // 活动
  22. class Activity
  23. {
  24. Graph graph;
  25. PriorityQueue queue;
  26.  
  27. // 初始化工程活动
  28. public void InitGraph()
  29. {
  30. queue = new PriorityQueue();
  31. //根据工程活动关系表构造有向图 (采用AOV网 + 邻接表)
  32. graph = new Graph();
  33. graph.vertexs = new VertexNode[9];
  34. int[] days = new int[] { 8, 5, 6, 4, 7, 7, 4, 3, 4 };
  35. int[] inCount = new int[] { 0, 0, 2, 1, 1, 2, 1, 1, 2 };
  36. List<int[]> adjacentNode = new List<int[]>();
  37. adjacentNode.Add( new int[] { 6, 2 } );
  38. adjacentNode.Add( new int[] { 4, 2 } );
  39. adjacentNode.Add( new int[] { 3 } );
  40. adjacentNode.Add( new int[] { 5, 8 } );
  41. adjacentNode.Add( new int[] { 5 } );
  42. adjacentNode.Add( null );
  43. adjacentNode.Add( new int[] { 7 } );
  44. adjacentNode.Add( new int[] { 8 } );
  45. adjacentNode.Add( null );
  46.  
  47. for (int i = 0; i < graph.vertexs.Length; i++)
  48. {
  49. VertexNode v = new VertexNode();
  50. graph.vertexs[i] = v;
  51. v.name = "P" + i;
  52. v.days = days[i];
  53. v.inCount = inCount[i];
  54. v.adjacentNode = adjacentNode[i];
  55. //活动最早开始时间的自动计算算法以后再讲,这里暂时随便赋个值。
  56. v.sTime = new Random().Next(100);
  57. }
  58. }
  59.  
  60. // 对活动有向图进行拓扑排序
  61. public bool TopSort()
  62. {
  63. List<VertexNode> sortedNode = new List<VertexNode>();
  64. //所有入度为0的活动进队列
  65. for (int i = 0; i < graph.vertexs.Length; i++)
  66. {
  67. if (graph.vertexs[i].inCount == 0)
  68. queue.Enqueue(graph.vertexs[i]);
  69. }
  70.  
  71. while (queue.Count > 0)
  72. {
  73. VertexNode node = queue.Dequeue();
  74. sortedNode.Add(node);
  75. if (null == node.adjacentNode)
  76. continue;
  77. //遍历节点node的所有邻接点,将表示有向边的inCount值减1
  78. for (int j = 0; j < node.adjacentNode.Length; j++)
  79. {
  80. int adjNode = node.adjacentNode[j];
  81. graph.vertexs[adjNode].inCount--;
  82. //如果inCount值为0,则该节点入队列
  83. if (graph.vertexs[adjNode].inCount == 0)
  84. queue.Enqueue(graph.vertexs[adjNode]);
  85. }
  86. }
  87.  
  88. //如果有向图存在环路
  89. if (sortedNode.Count != graph.vertexs.Length)
  90. {
  91. Console.WriteLine("有向图存在环路,活动无法顺利完成。");
  92. return false;
  93. }
  94.  
  95. //输出
  96. Console.Write("拓扑排序: ");
  97. for (int i = 0; i < sortedNode.Count; i++)
  98. {
  99. Console.Write(sortedNode[i].name + " ");
  100. }
  101.  
  102. return true;
  103. }
  104. }
  105.  
  106. // 活动顶点数据结构
  107. class VertexNode
  108. {
  109. public string name;//活动名称
  110. public int days; //完成活动所需时间
  111. public int sTime; //活动最早开始时间
  112. public int inCount;//活动的前驱结点个数
  113. public int[] adjacentNode;//相邻活动列表(节点索引)
  114. }
  115.  
  116. // 活动图
  117. class Graph
  118. {
  119. public VertexNode[] vertexs;//图的顶点列表
  120. }
  121.  
  122. // 优先级队列
  123. class PriorityQueue
  124. {
  125. private List<VertexNode> list = new List<VertexNode>();
  126.  
  127. public int Count
  128. {
  129. get
  130. {
  131. return list.Count;
  132. }
  133. }
  134.  
  135. public void Enqueue(VertexNode node)
  136. {
  137. Console.WriteLine("进队列: "+node.name);
  138. list.Add(node);
  139. list.Sort(Comparison);
  140. }
  141.  
  142. public VertexNode Dequeue()
  143. {
  144. VertexNode node = null;
  145. if (list.Count > 0)
  146. {
  147. node = list[0];
  148. list.RemoveAt(0);
  149. }
  150. return node;
  151. }
  152.  
  153. //按活动最早开始时间排序
  154. int Comparison(VertexNode a, VertexNode b)
  155. {
  156. if (a.sTime > b.sTime)
  157. return 1;
  158. else if (a.sTime == b.sTime)
  159. return 0;
  160. return -1;
  161. }
  162. }
  163. }


运行结果:

rrrrrrrrrrrrrrrrrr.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号