C语言实现图拓扑排序算法 node结构体,Graph结构体,Stack结构体 实现以下9个接口 完整头文件 完整源文件 完整main函数测试文件 node结构体,Graph结构体,Stack结构体 struct node { int vertex; struct node *next; }; struct Graph { int numVertices; int *