数据结构图基本操作 邻接矩阵:#include <stdio.h>#include <stdlib.h>#define maxsize 50//结点定义typedef struct{ int no; char info;}VertexType;//图定义typedef struct{ int edges[maxsize][maxsize]; ... 数据结构 2023-12-09 49 点赞 0 评论 74 浏览