网站首页
编程语言
数据库
系统相关
其他分享
编程问答
GraphKind
2024-06-23
【数据结构与算法】图的存储(邻接矩阵,邻接表)详解
图的邻接矩阵数据结构typedefenum{NDG,DG,NDN,DN}GraphKind;usingVRType=int;usingInfoType=int;typedefstructArcCell{ VRTypeadj; InfoType*info;}Arc[N][N];structMGraph{ ElemTypevexs[N]; Arcarc; intvexnum,arcnum; GraphKi