博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图的遍历算法
阅读量:6305 次
发布时间:2019-06-22

本文共 3769 字,大约阅读时间需要 12 分钟。

遍历操作是图算法的基本操作,对于图的遍历,主要有两种,一种是深度遍历,一种是广度遍历。虽然这种操作很基本,但是稍微加一些其他的元素进去就能形成很有用的算法,比如加一些限制就可以变成深度或者广度搜索。

 

图遍历算法的特点是需要用一个visit数组保存各个节点是否已经被访问过的信息,对于深度遍历,一般都是递归操作,对于广度遍历,一般是用先入先出队列实现。下面是相应的代码,其他需要的头文件在之前的几篇随笔中有提到,整个工程的源文件我托管在了github上:

头文件:

/*     author: areslipan@163.com     filename : graph_traversal.h     date : 2013.10.1 */ #ifndef GRAPH_TRAVERSAL_ #define GRAPH_TRAVERSAL_ #include "graph.h" #include 
using namespace std; //邻接矩阵的深度遍历 void dfs_matrix(vector
> & g, int start, int numNodes); void _dfs_matrix(vector
> & g, vector
& visit, int start, int numNodes); //邻接表的深度遍历 void dfs_adjlist(GraphAdjList * g, int start); void _dfs_adjlist(GraphAdjList * g, vector
&visit, int start); //邻接矩阵的广度遍历 void bfs_matrix(vector
> &g, int start, int numNodes); void _bfs_matrix(vector
> &g, vector
& visit, int start ,int numNodes); //邻接表的广度遍历 void bfs_adjlist(GraphAdjList *g, int start); void _bfs_adjlist(GraphAdjList *g, vector
& visit, int start); #endif

 

实现文件:

/*     author: areslipan@163.com     filename : graph_traversal.cpp     date: 2013.10.1 */ #include "graph_traversal.h" using namespace std; void dfs_matrix(vector
> & g, int start, int numNodes) {
vector
visit(numNodes,false); cout<<"邻接矩阵方式存储的图的dfs:"; _dfs_matrix(g, visit, start ,numNodes); cout<
> & g, vector
& visit, int start, int numNodes) {
cout<
<<" "; visit[start] = true; for(int i=0;i
=MYINF)continue; _dfs_matrix(g,visit,i,numNodes); } } void dfs_adjlist(GraphAdjList * g, int start) { vector
visit(g->numNodes, false); cout<<"邻接表方式存储的图的dfs:"; _dfs_adjlist(g,visit,start); cout<
&visit, int start) { cout<
<<" "; visit[start] = true; EdgeNode * cur = g->adjList[start].firstedge; while(cur != NULL) { if(!visit[cur->adjvex])_dfs_adjlist(g, visit, cur->adjvex); cur = cur->next; } } void bfs_matrix(vector
> &g, int start, int numNodes) { cout<<"以邻接矩阵方式存储的图的bfs遍历: "; vector
visit(numNodes, false); _bfs_matrix(g, visit, start ,numNodes); cout<
> &g, vector
& visit, int start ,int numNodes) { queue
myQueue; myQueue.push(start); while(!myQueue.empty()) { int cur = myQueue.front(); myQueue.pop(); if(visit[cur])continue; cout<
<<" "; visit[cur] = true; for(int i=0;i
= MYINF)continue; myQueue.push(i); } } } void bfs_adjlist(GraphAdjList *g, int start) { cout<<"以邻接表方式存储的图的bfs遍历: "; vector
visit(g->numNodes, false); _bfs_adjlist(g,visit,start); cout<
& visit, int start) { queue
myQueue; myQueue.push(start); while(!myQueue.empty()) { int cur = myQueue.front(); myQueue.pop(); if(visit[cur])continue; cout<
<<" "; visit[cur] = true; EdgeNode * en = g->adjList[cur].firstedge; while(en!=NULL) { if(!visit[en->adjvex])myQueue.push(en->adjvex); en = en->next; } } }

测试文件:

/*     author: areslipan@163.com     filename: testTraversal.cpp     date: 2013.10.1     示例输入: 0 1 4 1000 1000 1000 1 0 2 7 5 1000 4 2 0 1000 1 1000 1000 7 1000 0 3 2 1000 5 1 3 0 6 1000 1000 1000 2 6 0 6 18 0 1 2 3 4 5 0 1 1 1 0 1 0 2 4 2 0 4 1 2 2 2 1 2 1 4 5 4 1 5 1 3 7 3 1 7 2 4 1 4 2 1 3 4 3 4 3 3 3 5 2 5 3 2 4 5 6 5 4 6 */ #include "graph.h" using namespace std; int main() {
vector
> gm; create_an_graph_from_stdin(gm,6); GraphAdjList ga; create_adjlist_graph(&ga); show_graph(gm,6); show_adjlist_graph(&ga); dfs_matrix(gm, 2, 6); bfs_matrix(gm, 2, 6); dfs_adjlist(&ga,2); bfs_adjlist(&ga,2); destroy_adjlist_graph(&ga); }

测试输出:

转载于:https://www.cnblogs.com/obama/p/3348481.html

你可能感兴趣的文章
用sqlplus远程连接oracle命令
查看>>
多年一直想完善的自由行政审批流程组件【2002年PHP,2008年.NET,2010年完善数据设计、代码实现】...
查看>>
自动生成四则运算题目
查看>>
【翻译】使用新的Sencha Cmd 4命令app watch
查看>>
【前台】【单页跳转】整个项目实现单页面跳转,抛弃iframe
查看>>
因为你是前端程序员!
查看>>
数据库设计中的14个技巧
查看>>
Android学习系列(5)--App布局初探之简单模型
查看>>
git回退到某个历史版本
查看>>
ecshop
查看>>
HTML5基础(二)
查看>>
在GCE上安装Apache、tomcat等
查看>>
在Mac 系统下进行文件的显示和隐藏
查看>>
ue4(c++) 按钮中的文字居中的问题
查看>>
技能点
查看>>
读书笔记《乌合之众》
查看>>
Hadoop日记Day1---Hadoop介绍
查看>>
iOS 学习资料汇总
查看>>
centos7 yum安装jdk
查看>>
Bluedroid与BluZ,蓝牙测试方法的变动(基于bludroid和BlueZ的对比)
查看>>