当前位置:   article > 正文

【数据结构】图邻接表存储实现_实现图的邻接表存储

实现图的邻接表存储

一个图 G = (V,E)由顶点(vertex)集 V 和边(edge)集 E 组成。每一条边就是一个点对(v,w),其中 v,w ∈V。

图的表示

图的存储一般有邻接表和邻接矩阵两种。若图是稠密的,则宜采用邻接矩阵;图是稀疏的,则应改用邻接表。这里我们先讨论图的邻接表存储方式。

先看下面的无向图(图片来源于网络)

                                                                                         

邻接表形式

                                                                          

上面的边没有赋予权重,考虑边的权重,可以在邻接表后面的链表节点中添加 weight 变量表示。

邻接表前面的数组表示各个顶点,后面的链表节点分别表示与该顶点相连接的顶点。边则由两个顶点组成(最前面的顶点分别与后面对应的链表节点的顶点组合而成)。

图的数据结构

  1. /*邻接点*/
  2. typedef struct _AdjListNode
  3. {
  4. int end; //顶点编号,也是边的结束顶点编号
  5. int weight; //权重
  6. struct _AdjListNode *next;//指向下一个邻接点
  7. }AdjListNode;
  8. typedef struct _AdjList
  9. {
  10. AdjListNode *head; //指向链表的头节点
  11. }AdjList;
  12. typedef struct _Graph
  13. {
  14. int vertices; //顶点数
  15. int edges; //边数
  16. AdjList *array;
  17. }Graph;
图的创建
  1. /*创建V个顶点的图*/
  2. Graph* CreateGraph(int V)
  3. {
  4. Graph *graph = new Graph;
  5. assert(graph);
  6. graph->vertices = V;
  7. graph->edges = 0;
  8. graph->array = new AdjList[V];
  9. for (int i = 0; i < V; ++i)
  10. {
  11. graph->array[i].head = NULL;
  12. }
  13. return graph;
  14. }
添加边
  1. /*
  2. 添加边
  3. 如果是有向图或是因边的起始顶点不同的不同权重的可基于此简单修改
  4. */
  5. void AddEdge(Graph *graph, int begin, int end, int weight)
  6. {
  7. //边后顶点 begin --> end
  8. AdjListNode *newNode = new AdjListNode;
  9. assert(newNode);
  10. newNode->end = end;
  11. newNode->weight = weight; //begin顶点到end顶点的边的权重
  12. newNode->next = graph->array[begin].head; //新边插入到链表前面(同Hash)
  13. graph->array[begin].head = newNode;
  14. //边前顶点,因为是无向图,所以类似双向链表形式 end --> begin
  15. newNode = new AdjListNode;
  16. newNode->end = begin;
  17. newNode->weight = weight; //end顶点到begin顶点的边的权重
  18. newNode->next = graph->array[end].head;
  19. graph->array[end].head = newNode;
  20. graph->edges++;
  21. }
销毁图
  1. /*销毁图*/
  2. void GraphDestory(Graph *graph)
  3. {
  4. AdjListNode *delNode = NULL;
  5. for (int i = 0; i < graph->vertices; ++i)
  6. {
  7. delNode = graph->array[i].head;
  8. while (delNode) //删除对应链表节点
  9. {
  10. AdjListNode *temp = delNode;
  11. delNode = delNode->next;
  12. delete temp;
  13. }
  14. graph->array[i].head = NULL;
  15. }
  16. delete[] graph->array;
  17. delete graph;
  18. }
返回图的顶点数和边数
  1. /*返回图的顶点数*/
  2. int GraphVerticesNum(Graph *graph)
  3. {
  4. return graph->vertices;
  5. }
  6. /*返回图的边数*/
  7. int GraphEdgesNum(Graph *graph)
  8. {
  9. return graph->edges;
  10. }
检查两个顶点之间是否有边
  1. /*检查两个顶点间是否有边*/
  2. bool GraphHasEdge(Graph *graph, int begin, int end)
  3. {
  4. assert(begin != end);//其余各参数检查(图,顶点编号)未写出
  5. /*因为是无向图,所以只需检查其中的一个顶点即可*/
  6. AdjListNode *node = graph->array[begin].head;
  7. while (node)
  8. {
  9. if (end == node->end)
  10. return true;
  11. node = node->next;
  12. }
  13. return false;
  14. /*如果是有向图,则还需要检查数组中编号end的顶点*/
  15. }

图就是多个链表的聚合。

理解了图的邻接表存储,后面的代码就好实现了。

基于前面的分析上,下面给出借助STL中的list 来构建邻接表的图,前面需要自己构建链表,最终实现的图结构是一样的,但是代码的简洁度不是差了一点半点:

  1. class graph
  2. {
  3. public:
  4. graph(int v) :vertex(v){
  5. adj = new list<int>[v];
  6. }
  7. void addEdge(int v, int w);
  8. private:
  9. int vertex;
  10. list<int> *adj;
  11. };
  12. //v:边的首顶点;w:边的尾顶点
  13. void graph::addEdge(int v, int w)
  14. {
  15. adj[v].push_back(w);
  16. }
构建时,只需要对照邻接表来添加边。

下面上面创建一个图过于繁琐,这里更新一下,一举根据输入创建一个图,2015.7更新

  1. typedef int VertexType;
  2. typedef int EdgeType;
  3. /*下面构成一个链式哈希表结构*/
  4. /*边表结点*/
  5. typedef struct AdjNode
  6. {
  7. int adjvex; //边的终点
  8. int weight; //边的权重
  9. struct AdjNode *next; //指向下一个邻接点
  10. }AdjNode;
  11. /*顶点表结点*/
  12. typedef struct VertexNode
  13. {
  14. VertexType data; //顶点信息
  15. AdjNode *pFfirstedge; //边表头指针
  16. }VertexNode;
  17. /*图结点*/
  18. typedef struct Graph
  19. {
  20. VertexNode *AdjArray; //指向顶点表
  21. int numVertexes;
  22. int numEdges;
  23. }Graph;
  24. Graph* CreateGraph()
  25. {
  26. Graph *pGraph = new Graph;
  27. AdjNode *pNode = NULL;
  28. if (NULL == pGraph)
  29. return NULL;
  30. cout << "输入顶点数和边数:" << endl;
  31. cin >> pGraph->numVertexes >> pGraph->numEdges;
  32. pGraph->AdjArray = new VertexNode[pGraph->numVertexes]();//创建并初始化为0
  33. if (NULL == pGraph->AdjArray)
  34. {
  35. delete pGraph;
  36. return NULL;
  37. }
  38. /*建立顶点信息表*/
  39. for (int i = 0; i < pGraph->numVertexes; ++i)
  40. {
  41. /*这里默认顶点从0到pGraph->numVertexes,可根据需要修改
  42. 如:
  43. cout << "输入顶点信息" << endl;
  44. cin >> (pGraph->AdjArray)[i].data;
  45. */
  46. (pGraph->AdjArray)[i].data = i;
  47. }
  48. /*建立边表*/
  49. for (int k = 0; k < pGraph->numEdges; ++k)
  50. {
  51. int i, j, w;
  52. cout << "输入边<vi,vj>上的下标i,下标j和权重w:" << endl;
  53. cin >> i >> j >> w;
  54. pNode = new AdjNode;
  55. if (NULL == pNode)
  56. {
  57. delete[] pGraph->AdjArray;
  58. delete pGraph;
  59. return NULL;
  60. }
  61. pNode->adjvex = j;
  62. pNode->weight = w;
  63. pNode->next = (pGraph->AdjArray)[i].pFfirstedge;//类链式哈希表插入操作,新节点插入到链表头结点
  64. (pGraph->AdjArray)[i].pFfirstedge = pNode;
  65. /*如果是无向图,还需要插入反过来的边,补充代码如下*/
  66. AdjNode *pNode = new AdjNode;
  67. if (NULL == pNode)
  68. {
  69. delete[] pGraph->AdjArray;
  70. delete pGraph;
  71. return NULL;
  72. }
  73. pNode->adjvex = i;
  74. pNode->weight = w;
  75. pNode->next = (pGraph->AdjArray)[j].pFfirstedge;
  76. (pGraph->AdjArray)[j].pFfirstedge = pNode;
  77. }
  78. return pGraph;
  79. }
图结构关键在于理解图的存储方式,理解了其存储方式,对于创建图以及遍历就很好理解实现了。
 图的邻接矩阵实现见: http://blog.csdn.net/wenqian1991/article/details/47123807

                                             





声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/128061
推荐阅读
相关标签
  

闽ICP备14008679号