AOV网络的类定义-数据结构数据结构 时间:2024-05-16 03:05:14 【文件属性】: 文件名称:AOV网络的类定义-数据结构数据结构 文件大小:4.19MB 文件格式:PPT 更新时间:2024-05-16 03:05:14 数据数据 AOV网络的类定义: class Graph { private: List *HeadNodes; int *count, *t; int n; public: Graph (const int vertices = 0) : n (vertices) { HeadNodes = new List[n]; count = new int[n]; t = new int[n]; }; void TopologicalOrder ( ); }; 立即下载