拓扑排序及AOE网的关键路径(python实现)
'''图的拓扑排序及关键路径'''import syssys.path.append(r"C:\Users\Administrator\Desktop\数据结构(python)代码")import Graph'''导入一个模块 Grpah是之前已经定义过得图类,其实完全没用到,最初的想法是基于图类来实现拓扑排序和求解关键路径的,但由于实现中基本上只有到了图类中定义的vertex_num函数输出了顶...