博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图的遍历——BFS(队列实现)
阅读量:6543 次
发布时间:2019-06-24

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

#include 
#include
#include
#include
#include
#include
using namespace std;const int VERTEX_NUM = 20;const int INFINITY = 0x7fffffff; // 最大int型数,表示权的无限值 bool vis[VERTEX_NUM];class Graph {public: int vexNum; int edgeNum; int vex[VERTEX_NUM]; int arc[VERTEX_NUM][VERTEX_NUM]; };void createGraph(Graph &G){ cout << "please input vexNum and edgeNum: "; cin >> G.vexNum >> G.edgeNum; for (int i = 0; i != G.vexNum; ++i) { cout << "please input no" << i+1 << " vertex: "; cin >> G.vex[i]; } for (int i = 0; i != G.vexNum; ++i) { for (int j = 0; j != G.vexNum; ++j) { G.arc[i][j] = INFINITY; } } for (int k = 0; k != G.edgeNum; ++k) { cout << "please input the vertex of edge(vi, vj) and weight: "; int i, j, w; cin >> i >> j >> w; G.arc[i][j] = w; G.arc[j][i] = G.arc[i][j]; // 无向图 }}void BFSTraverse(const Graph &G){ memset(vis, false, VERTEX_NUM); queue
q; for (int i = 0; i != G.vexNum; ++i) { if (!vis[i]) { vis[i] = true; cout << G.vex[i] << " "; q.push(i); while (!q.empty()) { int m = q.front(); // 队列的作用正在于此 q.pop(); // ... for (int j = 0; j != G.vexNum; ++j) { if (G.arc[m][j] != INFINITY && !vis[j]) { cout << G.vex[j] << " "; q.push(j); vis[j] = true; } } } } }} int main(){ Graph G; createGraph(G); BFSTraverse(G); return 0;}

  

转载于:https://www.cnblogs.com/xzxl/p/8646694.html

你可能感兴趣的文章
jQuery 插件-(初体验一)
查看>>
PHP语言 -- Ajax 登录处理
查看>>
基于js的CC攻击实现与防御
查看>>
Largest Rectangle in a Histogram
查看>>
树状数组模板
查看>>
我的家庭私有云计划-19
查看>>
项目实践中Linux集群的总结和思考
查看>>
关于使用Android NDK编译ffmpeg
查看>>
监控MySQL主从同步是否异常并报警企业案例模拟
查看>>
zabbix从2.2.3升级到最新稳定版3.2.1
查看>>
我有一个网站,想提高点权重
查看>>
2017年前端框架、类库、工具大比拼
查看>>
浅谈(SQL Server)数据库中系统表的作用
查看>>
微软邮件系统Exchange 2013系列(七)创建发送连接器
查看>>
程序员杂记系列
查看>>
Kafka消息时间戳(kafka message timestamp)
查看>>
【树莓派】制作树莓派所使用的img镜像(一)
查看>>
理解网站并发量
查看>>
spring整合elasticsearch之环境搭建
查看>>
TensorFlow 架构与设计-编程模型【转】
查看>>