图算法-邻接表,邻接矩阵相互转换

 

 

//邻接表定义
typedef struct ArcNode{
        int adjvex;
        ArcNode* next;
}ArcNode;

typedf struct VNode{
       int data;
       ArcNode* firstarc;
}VNode;

typedef struct{
       VNode adjlist[MAXSIZE];
       int n,e;
}ALGraph;

//邻接矩阵存储结构
typedef struct{
      int d[MAXSIZE];
      int arcs[MAXSIZE][MAXSIZE];
      int n,e;
}MGraph;


//邻接矩阵转换成邻接表
void invert(MGraph G1,ALGraph g2)
{
     g2.n=G1.n;
     g2.e=G2.e;

     ArcNode *p;
     
     for(int i=0;iadjvex=j;
                   p->next=g2.adjlist[j].firstarc;
                   g2.adjlist[j].firstarc=p;
              }
         } 
     }

}




//邻接表转换成邻接矩阵
void  invert(MGraph G1,ALGraph g2)
{
      G1.n=g2.n;
      G1.e=g2.e;

     ArcNode *p;

     for(int i=0;iadjvex]=1;
             p=p-next;
          }
     }
}






 

你可能感兴趣的:(数据结构)