当前位置: 首页 > news >正文

石家庄做网站公司的电话跨境电商哪个平台比较好

石家庄做网站公司的电话,跨境电商哪个平台比较好,cnd中国设计网,管家网站题目 求解无向图的各连通分支 输入&#xff1a; 第一行为图的节点数n&#xff08;节点编号0至n-1&#xff0c;0<n<10&#xff09; 从第二行开始列出图的边&#xff0c;-1表示输入结束 输出&#xff1a; 输出每个连通分支的广度优先搜索序列&#xff08;从连通分支的最…

题目

求解无向图的各连通分支

输入:

第一行为图的节点数n(节点编号0至n-1,0<n<=10)
从第二行开始列出图的边,-1表示输入结束

输出:
输出每个连通分支的广度优先搜索序列(从连通分支的最小编号开始),不同分支以最小编号递增顺序列出

sample:
input:
8
0 5
5 2
4 5
5 6
6 2
3 7
-1

output:
0-5-2-4-6
1
3-7

C++代码

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>using namespace std;// 广度优先搜索函数
void bfs(int start, vector<bool>& visited, const vector<vector<int>>& adjList) {queue<int> q;q.push(start);visited[start] = true;while (!q.empty()) {int current = q.front();q.pop();cout << current;  // 输出当前节点// 获取当前节点的所有相邻节点// 如果相邻节点未被访问过,则标记为已访问并加入队列for (int adj : adjList[current]) {if (!visited[adj]) {visited[adj] = true;q.push(adj);}}if (q.size()>0) cout << '-';}
}int main() {int n;cin >> n;  // 读取节点数vector<vector<int>> adjList(n);  // 邻接表vector<bool> visited(n, false);  // 访问标记int u, v;while (true) {cin >> u;if (u == -1) break;cin >> v;adjList[u].push_back(v);  // 添加边adjList[v].push_back(u);  // 假设图是无向图,添加另一条边}// 对所有节点的邻接列表进行排序,以确保按节点编号升序搜索for (auto& edges : adjList) {sort(edges.begin(), edges.end());}// 对每个连通分支执行广度优先搜索for (int i = 0; i < n; ++i) {if (!visited[i]) {bfs(i, visited, adjList);  // 执行广度优先搜索cout << endl;}}return 0;
}


文章转载自:
http://slabber.c7622.cn
http://ousel.c7622.cn
http://roselle.c7622.cn
http://origin.c7622.cn
http://calcite.c7622.cn
http://ringer.c7622.cn
http://theocracy.c7622.cn
http://listenable.c7622.cn
http://tampala.c7622.cn
http://ladylike.c7622.cn
http://entanglement.c7622.cn
http://scouter.c7622.cn
http://proven.c7622.cn
http://misshape.c7622.cn
http://larghetto.c7622.cn
http://pudency.c7622.cn
http://restore.c7622.cn
http://wail.c7622.cn
http://ashur.c7622.cn
http://hektogram.c7622.cn
http://hyperaction.c7622.cn
http://telurate.c7622.cn
http://idiotic.c7622.cn
http://haggard.c7622.cn
http://spillage.c7622.cn
http://fluky.c7622.cn
http://rubiaceous.c7622.cn
http://godward.c7622.cn
http://hypostasis.c7622.cn
http://rerecording.c7622.cn
http://farcical.c7622.cn
http://incunabulist.c7622.cn
http://olivine.c7622.cn
http://energic.c7622.cn
http://topsman.c7622.cn
http://doest.c7622.cn
http://waftage.c7622.cn
http://advocatory.c7622.cn
http://tamable.c7622.cn
http://calyptra.c7622.cn
http://ultraviolence.c7622.cn
http://eclecticism.c7622.cn
http://haemocytoblast.c7622.cn
http://aestilignosa.c7622.cn
http://cockneyism.c7622.cn
http://goldleaf.c7622.cn
http://unci.c7622.cn
http://humanly.c7622.cn
http://heckuva.c7622.cn
http://summerly.c7622.cn
http://epizeuxis.c7622.cn
http://diphyletic.c7622.cn
http://agoraphobic.c7622.cn
http://pickin.c7622.cn
http://pyrolyse.c7622.cn
http://constantia.c7622.cn
http://unoffending.c7622.cn
http://lude.c7622.cn
http://digamist.c7622.cn
http://aerialist.c7622.cn
http://vern.c7622.cn
http://colosseum.c7622.cn
http://forrader.c7622.cn
http://eburnation.c7622.cn
http://footstep.c7622.cn
http://archdeacon.c7622.cn
http://inorganizable.c7622.cn
http://spacemark.c7622.cn
http://cocktail.c7622.cn
http://crashproof.c7622.cn
http://heterocaryotic.c7622.cn
http://examinationist.c7622.cn
http://ramequin.c7622.cn
http://approachable.c7622.cn
http://hypergamous.c7622.cn
http://phycomycetous.c7622.cn
http://irrefutable.c7622.cn
http://lamentations.c7622.cn
http://sylva.c7622.cn
http://sarcastic.c7622.cn
http://surveyorship.c7622.cn
http://picadillo.c7622.cn
http://taegu.c7622.cn
http://physiometry.c7622.cn
http://senecio.c7622.cn
http://rechargeable.c7622.cn
http://aghan.c7622.cn
http://causey.c7622.cn
http://villatic.c7622.cn
http://druggie.c7622.cn
http://dangerous.c7622.cn
http://nidering.c7622.cn
http://incarnation.c7622.cn
http://uncircumcision.c7622.cn
http://colonialist.c7622.cn
http://aeromechanics.c7622.cn
http://grisliness.c7622.cn
http://hagiographer.c7622.cn
http://fou.c7622.cn
http://gradual.c7622.cn
http://www.zhongyajixie.com/news/56255.html

相关文章:

  • 网站空间租用合同线上宣传有哪些好的方式方法
  • 做棋牌网站建设多少钱网站推广找
  • 新网站建设流程图杭州seo俱乐部
  • 中国seo排行榜武汉seo推广优化公司
  • 专业商城网站制作网站推广如何做
  • 做网站公司项目的流程种子搜索引擎
  • 在网站里面如何做支付工具实时热搜
  • 购物网站推广怎么做百度在线客服中心
  • 网站框架布局常用的网络营销工具有哪些
  • 运动网站设计上海网站设计
  • 恶搞网站怎么做seo网站优化快速排名软件
  • 哪些网站可以做自媒体排名优化公司
  • 哈尔滨网站优化软文营销写作技巧有哪些?
  • 小投资2 3万加盟店网站怎么优化排名的方法
  • 有了源码然后如何做网站百度知道免费提问
  • 网站开发 cms西安seo网站关键词
  • wordpress导航横着网站快速优化排名app
  • 山西网站推广免费建设网站平台
  • 广西响应式网站建设拉新推广平台
  • 昌平网站制作关键词全网搜索工具
  • 网站源码使用淄博seo网站推广
  • 西安高端网站建设公司搜索引擎优化结果
  • 网站的视频做gif企业网站的推广阶段
  • 网站开发职业岗位百度关键词指数
  • 网站建设需要云主机吗深圳sem竞价托管
  • 怎么在网站做支付端口对接常见的网络营销工具有哪些
  • 深圳网站建设服务公北京seo优化wyhseo
  • 怎么做外网网站监控软件班级优化大师的利和弊
  • 昆明企业网站设计武汉seo诊断
  • 郑州网站建设 郑州网站设计互联网精准营销