图的存储结构——邻接表

作者:追风剑情 发布于:2014-8-16 12:06 分类:Algorithms

邻接表是图的一种链式存储结构。所占空间与边数有关,适合存储稀疏图。一个图的邻接矩阵表示是唯一的,但其邻接表表示不唯一。

程序语言 C++
开发工具 Visual Studio2010

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. #define MAXVEX 5 /*图中最大顶点数*/
  5.  
  6. //定义顶点类型为10个字符的字符数组
  7. typedef char VertexType[10];
  8.  
  9. typedef struct edgenode
  10. {
  11. int adjvex; //邻接点序号
  12. int value; //边的权值
  13. struct edgenode *next; //下一条边的顶点
  14. } ArcNode; //每个顶点建立的单键表中结点的类型
  15.  
  16. typedef struct vexnode
  17. {
  18. VertexType data; //顶点信息
  19. ArcNode *firstarc; //指向第一条边结点
  20. } VHeadNode; //单链表的头结点类型
  21.  
  22. typedef struct
  23. {
  24. int n,e; //n为实际顶点数,e为实际边数
  25. VHeadNode adjlist[MAXVEX]; //单链表头结点数组
  26. } AdjList; //图的邻接表类型
  27.  
  28. //建立有向图的邻接表
  29. int CreateAdjList(AdjList *&G)
  30. {
  31. int i,b,t,w;
  32. ArcNode *p;
  33. G = (AdjList *)malloc(sizeof(AdjList));
  34. printf("顶点数(n),边数(e):");
  35. scanf("%d%d", &G->n, &G->e);
  36. for(i=0; i<G->n; i++)
  37. {
  38. printf("序号为%d的顶点信息:", i);
  39. scanf("%s", G->adjlist[i].data);
  40. G->adjlist[i].firstarc = NULL;
  41. }
  42.  
  43. for(i=0; i<G->e; i++)
  44. {
  45. printf("序号为%d边=>", i);
  46. printf("起点号 终点号 权值:");
  47. scanf("%d%d%d", &b, &t, &w);
  48. if (b<G->n && t<G->n && w>0)
  49. {
  50. //建立p结点
  51. p = (ArcNode *)malloc(sizeof(ArcNode));
  52. p->value = w;
  53. p->adjvex = t;
  54. //插入adjlist[b]单链表之首
  55. p->next = G->adjlist[b].firstarc;
  56. G->adjlist[b].firstarc = p;
  57. }else{
  58. printf("输入错误!\n");
  59. return(0);
  60. }
  61. }
  62.  
  63. return(1);
  64. }
  65.  
  66. void DispAdjList(AdjList *G)
  67. {
  68. int i;
  69. ArcNode *p;
  70. printf("图的邻接表表示如下:\n");
  71. for(i=0; i<G->n; i++)
  72. {
  73. printf("[%d, %3s]=>", i, G->adjlist[i].data);
  74. p = G->adjlist[i].firstarc;
  75. while(p != NULL)
  76. {
  77. printf("(%d, %d)->", p->adjvex, p->value);
  78. p = p->next;
  79. }
  80. printf("NULL\n");
  81. }
  82. }
  83.  
  84. void main()
  85. {
  86. AdjList *G;
  87. CreateAdjList(G);
  88. DispAdjList(G);
  89.  
  90. system("pause");
  91. }

运行效果

运行结果.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号