图的广度优先搜索

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

程序语言 C++

开发工具 Visual Studio2010

Graph.h文件

  1. #define MAXVEX 5 //图中最大顶点数
  2.  
  3. /////////////////////////////////////////////////////////////////////
  4. //
  5. // 定义邻接表数据结构
  6. //
  7. /////////////////////////////////////////////////////////////////////
  8. //定义顶点类型为10个字符的字符数组
  9. typedef char VertexType[10];
  10. typedef struct edgenode
  11. {
  12. int adjvex; //邻接点序号
  13. int value; //边的权值
  14. struct edgenode *next; //下一条边的顶点
  15. } ArcNode; //每个顶点建立的单链表中结点的类型
  16. typedef struct vexnode
  17. {
  18. VertexType data; //顶点信息
  19. ArcNode *firstarc; //指向第一条边结点
  20. } VHeadNode; //单链表的头结点类型
  21. typedef struct
  22. {
  23. int n,e; //n为实际顶点数,e为实际边数
  24. VHeadNode adjlist[MAXVEX]; //单链表头结点数组
  25. } AdjList; //图的邻接表类型
  26.  
  27. /////////////////////////////////////////////////////////////////////
  28. //
  29. // 定义邻接矩阵数据结构
  30. //
  31. /////////////////////////////////////////////////////////////////////
  32.  
  33. typedef struct vertex
  34. {
  35. int adjvex; /*顶点编号*/
  36. VertexType data;/*顶点信息*/
  37. } VType; /*顶点类型*/
  38. typedef struct graph
  39. {
  40. int n,e; /*n为实际顶点数,e为实际边数*/
  41. VType vexs[MAXVEX]; /*顶点集合*/
  42. int edges[MAXVEX][MAXVEX]; /*边的集合*/
  43. } AdjMatix; /*图的邻接矩阵类型*/

GSearch.cpp文件

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include "Graph.h"
  5.  
  6. //将邻接矩阵g转换成邻接表G*
  7. void MatToList(AdjMatix g, AdjList *&G)
  8. {
  9. int i,j;
  10. ArcNode *p;
  11. G = (AdjList *)malloc(sizeof(AdjList));
  12. for(i=0; i<g.n; i++) //给邻接表中所有头结点的指针域置初值
  13. {
  14. G->adjlist[i].firstarc = NULL;
  15. strcpy(G->adjlist[i].data, g.vexs[i].data);
  16. }
  17. //检查邻接矩阵中每个元素
  18. for(i=0; i<g.n; i++)
  19. {
  20. for(j=g.n - 1; j>=0; j--)
  21. {
  22. if(g.edges[i][j] != 0){
  23. //创建一个结点p
  24. p = (ArcNode *)malloc(sizeof(ArcNode));
  25. p->value = g.edges[i][j];
  26. p->adjvex = j;
  27. //将p插入到链表之首
  28. p->next = G->adjlist[i].firstarc;
  29. G->adjlist[i].firstarc = p;
  30. }
  31. }
  32. }
  33. G->n = g.n;
  34. G->e = g.e;
  35. }
  36.  
  37. void DispAdjList(AdjList *G)
  38. {
  39. int i;
  40. ArcNode *p;
  41. printf("图的邻接表表示如下:\n");
  42. for(i=0; i<G->n; i++)
  43. {
  44. printf("[%d, %3s]=>", i, G->adjlist[i].data);
  45. p = G->adjlist[i].firstarc;
  46. while(p != NULL)
  47. {
  48. printf("(%d, %d)->", p->adjvex, p->value);
  49. p = p->next;
  50. }
  51. printf("NULL\n");
  52. }
  53. }
  54.  
  55. //对邻接表G从顶点vi开始进行广度优先遍历
  56. void BFS(AdjList *G, int vi)
  57. {
  58. int i,v,visited[MAXVEX];
  59. int Qu[MAXVEX], front=0, rear=0; //循环队列
  60. ArcNode *p;
  61. for (i=0; i<G->n; i++) //给visited数组置初值0
  62. visited[i] = 0;
  63. printf("%d ", vi); //访问初始顶点
  64. visited[vi] = 1; //置已访问标识
  65. rear = (rear=1) % MAXVEX; //循环移动队尾指针
  66. Qu[rear] = vi; //初始顶点进队列
  67. while (front != rear) //队列不为空时循环
  68. {
  69. front = (front + 1) % MAXVEX;
  70. v = Qu[front]; //顶点v出队
  71. p = G->adjlist[v].firstarc;//找v的第一个邻接点
  72. while (p != NULL) //找v的所有邻接点
  73. {
  74. if (visited[p->adjvex] == 0) //未访问过则访问它
  75. {
  76. visited[p->adjvex] = 1; //置已访问标识
  77. printf("%d ", p->adjvex);//访问该点并使其入队列
  78. rear = (rear + 1) % MAXVEX; //循环移动队尾指针
  79. Qu[rear] = p->adjvex;//顶点p->adjvex进队
  80. }
  81. p = p->next; //找v的下一个邻接点
  82. }
  83. }
  84. }
  85.  
  86. void main()
  87. {
  88. int i,j;
  89. AdjMatix g;
  90. AdjList *G;
  91. int a[5][5] = {{0,1,0,1,0},{1,0,1,0,0},{0,1,0,1,1},
  92. {1,0,1,0,1},{0,0,1,1,0}};
  93. char *vname[MAXVEX] = {"a", "b", "c", "d", "e"};
  94. g.n = 5;
  95. g.e = 12;//建立无向图,每1条无向边算2条有向边
  96. for(i=0; i<g.n; i++)
  97. strcpy(g.vexs[i].data, vname[i]);
  98. for(i=0; i<g.n; i++)
  99. for(j=0; j<g.n; j++)
  100. g.edges[i][j] = a[i][j];
  101.  
  102. MatToList(g, G);
  103. DispAdjList(G);
  104. printf("从顶点0的广度优先遍历序列:\n");
  105. BFS(G, 0);
  106. printf("\n");
  107.  
  108. system("pause");
  109. }

工程结构

BFS工程.png

运行结果

BFS运行结果.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号