张乃孝版的数据结构课本课件讲解代码topoSort.c.doc
/* topoSort.c*/ /*拓扑排序算法*/ #include #include struct EdgeNode; typedef struct EdgeNode * PEdgeNode; typedef struct EdgeNode * EdgeList; struct EdgeNode{ int endvex; /* 相邻顶点在顶点表中下标
下载地址
用户评论