摘要: 十字链表(有向图)的抽象数据结构 1 #define MAXVEX 20 2 typedef struct ArcNode 3 { 4 int tailvex; 5 int headvex; 6 struct ArcNode* fristin;//弧头相同的弧的链域 7 struct ArcNode 阅读全文
posted @ 2022-01-20 02:36 吕辉 阅读(514) 评论(0) 推荐(0)