邻接矩阵转邻接表

作者:追风剑情 发布于:2014-8-17 10:56 分类:Algorithms

程序语言 C++

开发工具 Visual Studio2010

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. #define MAXVEX 5 //图中最大顶点数
  6.  
  7. /////////////////////////////////////////////////////////////////////
  8. //
  9. // 定义邻接表数据结构
  10. //
  11. /////////////////////////////////////////////////////////////////////
  12. //定义顶点类型为10个字符的字符数组
  13. typedef char VertexType[10];
  14. typedef struct edgenode
  15. {
  16. int adjvex; //邻接点序号
  17. int value; //边的权值
  18. struct edgenode *next; //下一条边的顶点
  19. } ArcNode; //每个顶点建立的单键表中结点的类型
  20. typedef struct vexnode
  21. {
  22. VertexType data; //顶点信息
  23. ArcNode *firstarc; //指向第一条边结点
  24. } VHeadNode; //单链表的头结点类型
  25. typedef struct
  26. {
  27. int n,e; //n为实际顶点数,e为实际边数
  28. VHeadNode adjlist[MAXVEX]; //单链表头结点数组
  29. } AdjList; //图的邻接表类型
  30.  
  31. /////////////////////////////////////////////////////////////////////
  32. //
  33. // 定义邻接矩阵数据结构
  34. //
  35. /////////////////////////////////////////////////////////////////////
  36.  
  37. typedef struct vertex
  38. {
  39. int adjvex; /*顶点编号*/
  40. VertexType data;/*顶点信息*/
  41. } VType; /*顶点类型*/
  42. typedef struct graph
  43. {
  44. int n,e; /*n为实际顶点数,e为实际边数*/
  45. VType vexs[MAXVEX]; /*顶点集合*/
  46. int edges[MAXVEX][MAXVEX]; /*边的集合*/
  47. } AdjMatix; /*图的邻接矩阵类型*/
  48.  
  49. //将邻接矩阵g转换成邻接表G*
  50. void MatToList(AdjMatix g, AdjList *&G)
  51. {
  52. int i,j;
  53. ArcNode *p;
  54. G = (AdjList *)malloc(sizeof(AdjList));
  55. for(i=0; i<g.n; i++) //给邻接表中所有头结点的指针域置初值
  56. {
  57. G->adjlist[i].firstarc = NULL;
  58. strcpy(G->adjlist[i].data, g.vexs[i].data);
  59. }
  60. //检查邻接矩阵中每个元素
  61. for(i=0; i<g.n; i++)
  62. {
  63. for(j=g.n - 1; j>=0; j--)
  64. {
  65. if(g.edges[i][j] != 0){
  66. //创建一个结点p
  67. p = (ArcNode *)malloc(sizeof(ArcNode));
  68. p->value = g.edges[i][j];
  69. p->adjvex = j;
  70. //将p插入到链表之首
  71. p->next = G->adjlist[i].firstarc;
  72. G->adjlist[i].firstarc = p;
  73. }
  74. }
  75. }
  76. G->n = g.n;
  77. G->e = g.e;
  78. }
  79.  
  80. void DispAdjList(AdjList *G)
  81. {
  82. int i;
  83. ArcNode *p;
  84. printf("图的邻接表表示如下:\n");
  85. for(i=0; i<G->n; i++)
  86. {
  87. printf("[%d, %3s]=>", i, G->adjlist[i].data);
  88. p = G->adjlist[i].firstarc;
  89. while(p != NULL)
  90. {
  91. printf("(%d, %d)->", p->adjvex, p->value);
  92. p = p->next;
  93. }
  94. printf("NULL\n");
  95. }
  96. }
  97.  
  98. void main()
  99. {
  100. int i,j;
  101. AdjMatix g;
  102. AdjList *G;
  103. int a[5][5] = {{0,1,0,1,0},{1,0,1,0,0},{0,1,0,1,1},
  104. {1,0,1,0,1},{0,0,1,1,0}};
  105. char *vname[MAXVEX] = {"a", "b", "c", "d", "e"};
  106. g.n = 5;
  107. g.e = 12;//建立无向图,每1条无向边算2条有向边
  108. for(i=0; i<g.n; i++)
  109. strcpy(g.vexs[i].data, vname[i]);
  110. for(i=0; i<g.n; i++)
  111. for(j=0; j<g.n; j++)
  112. g.edges[i][j] = a[i][j];
  113.  
  114. MatToList(g, G);
  115. DispAdjList(G);
  116.  
  117. system("pause");
  118. }

运行结果

阵转表.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号