图的连通性和一些基本问题
Posted ubospica
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图的连通性和一些基本问题相关的知识,希望对你有一定的参考价值。
图的存储
模板
nsz
: 点数目
msz
: 边数目
const int nsz=100050,msz=200050;
struct te{int t,pr;}edge[msz]; //无向图: msz*2
int hd[nsz],pe=1,in[nsz];
void adde(int f,int t,int v){edge[++pe]=(te){t,hd[f],v};hd[f]=pe;}
void adddb(int f,int t,int v){adde(f,t,v);adde(t,f,v);}
拓扑排序
模板
ts
: 拓扑序
int ts[nsz],pt=0;
bool topsort(){
rep(i,1,n)if(in[i]==0)que[++qt]=i,ts[++pt]=i;
while(qh<=qt){
int u=que[qh++];
for(int i=hd[u],v=edge[i].t;i;i=edge[i].pr,v=edge[i].t){
--in[v];
if(in[v]==0)ts[++pt]=v,que[++qt]=v;
}
}
return pt==n;
}
[板子题,Luogu1137 旅行计划](https://www.cnblogs.com/ubospica/p/9567369.html
以上是关于图的连通性和一些基本问题的主要内容,如果未能解决你的问题,请参考以下文章
(王道408考研数据结构)第六章图-第一节1:图的基本概念术语连通图连通分量和生成树森林