深度优先搜索

作者:追风剑情 发布于:2014-8-30 21:28 分类: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. //深度优先搜索递归算法
  87. int visited[MAXVEX];
  88. void DFS(AdjList *g, int vi)//对邻接表G从顶点vi开始进行深度优先遍历
  89. {
  90. ArcNode *p;
  91. printf("%d ", vi);//访问vi
  92. visited[vi] = 1; //置已访问标识
  93. p = g->adjlist[vi].firstarc;//找vi的第一个邻接点
  94. while (p!=NULL) //找vi的所有邻接点
  95. {
  96. if(visited[p->adjvex] == 0){
  97. DFS(g, p->adjvex); //从vi未访问过的邻接点出发深度优先搜索
  98. }
  99. p = p->next;
  100. }
  101. }
  102. //深度优先搜索非递归算法
  103. void DFS1(AdjList *G, int vi)
  104. {
  105. ArcNode *p;
  106. ArcNode *St[MAXVEX];
  107. int top=-1, v;
  108. printf("%d ", vi); //访问vi顶点
  109. visited[vi] = 1; //置已访问标识
  110. top++; //将初始顶点vi的firstarc指针进栈
  111. St[top] = G->adjlist[vi].firstarc;
  112. while (top > -1) //栈不空循环
  113. {
  114. p = St[top]; top--;//出栈一个顶点为当前顶点
  115. while (p!=NULL) //循环搜索其相邻顶点
  116. {
  117. v = p->adjvex;//取相邻顶点的编号
  118. if (visited[v] == 0)//若该顶点未访问过
  119. {
  120. printf("%d ", v);//访问v顶点
  121. visited[v] = 1;//置访问标识
  122. top++;//将该顶点的第1个相邻顶点进栈
  123. St[top] = G->adjlist[v].firstarc;
  124. break; //退出当前顶点的搜索
  125. }
  126. p = p->next;//找下一个相邻顶点
  127. }
  128. }
  129. }
  130.  
  131. void main()
  132. {
  133. int i,j;
  134. AdjMatix g;
  135. AdjList *G;
  136. int a[5][5] = {{0,1,0,1,0},{1,0,1,0,0},{0,1,0,1,1},
  137. {1,0,1,0,1},{0,0,1,1,0}};
  138. char *vname[MAXVEX] = {"a", "b", "c", "d", "e"};
  139. g.n = 5;
  140. g.e = 12;//建立无向图,每1条无向边算2条有向边
  141. for(i=0; i<g.n; i++)
  142. strcpy(g.vexs[i].data, vname[i]);
  143. for(i=0; i<g.n; i++)
  144. for(j=0; j<g.n; j++)
  145. g.edges[i][j] = a[i][j];
  146.  
  147. MatToList(g, G);
  148. DispAdjList(G);
  149.  
  150. printf("从顶点0的广度优先遍历序列:\n");
  151. BFS(G, 0);
  152. printf("\n");
  153.  
  154. for (i=0; i<g.n; i++)
  155. visited[i] = 0;//顶点标识置初值
  156. printf("从顶点0的深度优先遍历序列:\n");
  157. printf("递归算法:");
  158. DFS(G, 0);
  159. printf("\n");
  160.  
  161. for (i=0; i<g.n; i++)
  162. visited[i] = 0;//顶点标识置初值
  163. printf("非递归算法:");
  164. DFS1(G, 0);
  165. printf("\n");
  166.  
  167. system("pause");
  168. }

工程结构

工程结构.png

运行结果

深度优先搜索.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号