浙江大学数据结构(小白—邻接矩阵表示的图—插入边)

    xiaoxiao2022-06-26  219

    typedef struct ENode* PtrToENode; struct ENode{ Vertex v1,v2; WeightType Weight; // 权重 } void InsertEdge(MGraph Graph,Edge E) { // 单向图只需插入一次 Graph->G[E->v1][E->v2]=E->Weight; // 无向图需要插入两次 Graph->G[E->v2][E->v1]=E->Weight; }

     


    最新回复(0)