图的邻接矩阵和邻接表存储

【代码】

#include 
#include 
#define INF 32767				//定义∞
#define	MAXV 100				//最大顶点个数
typedef char InfoType;

//以下定义邻接矩阵类型
typedef struct
{	int no;						  //顶点编号
	InfoType info;			//顶点其他信息
} VertexType;					//顶点类型
typedef struct
{	int edges[MAXV][MAXV];		//邻接矩阵数组
	int n,e;					        //顶点数,边数
	VertexType vexs[MAXV];		//存放顶点信息
} MatGraph;						      //完整的图邻接矩阵类型

//以下定义邻接表类型
typedef struct ANode
{	int adjvex;					      //该边的邻接点编号
	struct ANode *nextarc;		//指向下一条边的指针
	int weight;					      //该边的相关信息,如权值(用整型表示)
} ArcNode;					      	//边结点类型
typedef struct Vnode
{	InfoType info;				//顶点其他信息
	int count;					  //存放顶点入度,仅仅用于拓扑排序
	ArcNode *firstarc;		//指向第一条边
} VNode;						    //邻接表头结点类型
typedef struct
{	VNode adjlist[MAXV];	//邻接表头结点数组
	int n,e;					    //图中顶点数n和边数e
} AdjGraph;						  //完整的图邻接表类型

//----邻接矩阵的基本运算算法----------------------------------
void CreateMat(MatGraph &g,int A[MAXV][MAXV],int n,int e) //创建图的邻接矩阵
{	int i,j;
	g.n=n;
	g.e=e;
	for (i=0; iadjlist[i].firstarc=NULL;
	for (i=0; i=0; j--)
			if (A[i][j]!=0 && A[i][j]!=INF)			    //存在一条边
			{	p=(ArcNode *)malloc(sizeof(ArcNode));	//创建一个结点p
				p->adjvex=j;
				p->weight=A[i][j];
				p->nextarc=G->adjlist[i].firstarc;   	//采用头插法插入结点p
				G->adjlist[i].firstarc=p;
			}
	G->n=n;
	G->e=n;
}
void DispAdj(AdjGraph *G)  	//输出邻接表G
{	int i;
	ArcNode *p;
	for (i=0; in; i++)
	{	p=G->adjlist[i].firstarc;
		printf("%3d: ",i);
		while (p!=NULL)
		{	printf("%3d[%d]→",p->adjvex,p->weight);
			p=p->nextarc;
		}
		printf("∧\n");
	}
}
void DestroyAdj(AdjGraph *&G)		//销毁图的邻接表
{	int i;
	ArcNode *pre,*p;
	for (i=0; in; i++)			  //扫描所有的单链表
	{	pre=G->adjlist[i].firstarc;	//p指向第i个单链表的首结点
		if (pre!=NULL)
		{	p=pre->nextarc;
			while (p!=NULL)			 //释放第i个单链表的所有边结点
			{	free(pre);
				pre=p;
				p=p->nextarc;
			}
			free(pre);
		}
	}
	free(G);					   	//释放头结点数组
}


你可能感兴趣的:(数据结构基本运算算法)