SCAU8649 图的广度遍历(vector
Posted 吃花椒的妙酱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SCAU8649 图的广度遍历(vector相关的知识,希望对你有一定的参考价值。
Description
使用图的深度遍历实现的邻接表存储结构和基本操作函数,在此基础上实现图的广度遍历算法并加以测试。注意正确使用队列存储结构。
输入格式
第一行:输入0到3之间整数(有向图:0,有向网:1,无向图:2,无向网:3); 第二行:输入顶点数和边数; 第三行:输入各个顶点的值(字符型,长度〈3);(遍历从输入的第一个顶点开始) 第四行:输入每条弧(边)弧尾和弧头(以空格作为间隔),如果是网还要输入权值;
输出格式
输出对图广度遍历的结果
#include <iostream>
#include <cstring>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <map>
#include <vector>
#include <queue>
using namespace std;
#define _for(i,a,b) for(int i=(a) ;i<=(b) ;i++)
#define _rep(i,a,b) for(int i=(a) ;i>=(b) ;i--)
#define mst(v,s) memset(v,s,sizeof(v))
#define pb push_back
#define IOS ios::sync_with_stdio(false)
#define int long long
#define inf 0x3f3f3f3f
#define lson p<<1,l,mid
#define rson p<<1|1,mid+1,r
#define ls p<<1
#define rs p<<1|1
typedef long long ll;
const int N=1e6+10;
int n,v,m;
vector <int > G[N];//不定数组存,跟邻接矩阵同理
int vi[N];//是否访问过
int st;//起点
queue <int >q;
void bfs()//广搜
{
vi[st]=1;//起点访问过
q.push(st);//起点入队
while( !q.empty() )//队列不为空
{
int x = q.front();//队首元素
q.pop();//出队
cout<<char(x+'a')<<" ";//int转成char
for(int i=0 ;i<G[x].size() ;i++)
{
int y = G[x][i];//当前结点x的孩子
if( vi[y] ) continue;//如果儿子已被访问
vi[y]=1;//访问过了
q.push(y);//下一个结点入队
}
}
}
signed main()
{
///!!!
// freopen("data.txt","r",stdin);
//!!!
IOS;
cin>>n>>v>>m;
int st;
_for(i,1,v)
{
//读三个顶点,其实不用也行
char x;
cin>>x;
}
_for(i,1,m)
{
char a,b;
cin>>a>>b;
int x=a-'a';
int y=b-'a';
//把读进来的字符,转成int类型作为每个点的编号
if(i==1) st=x;//记录dfs的起点
//有向图
if( n<=1 )
{
G[x].pb(y);//x指向y
}
//无向图
else
{
//x指向y,y指向x
G[x].pb(y);
G[y].pb(x);
}
}
bfs();
}
以上是关于SCAU8649 图的广度遍历(vector的主要内容,如果未能解决你的问题,请参考以下文章