码迷,mamicode.com
首页 > 其他好文 > 详细

并查集模板

时间:2019-01-17 00:40:30      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:for   color   ret   find   nbsp   状态压缩   初始化   初始   code   

void init(){for(int i=1;i<=maxx;i++)pre[i]=i;}//初始化

int Find(int x){return pre[x]==x?x:(pre[x]=Find(pre[x]));}//状态压缩+找最上面的祖先

void join(int x,int y){fx=Find(x);fy=Find(y);if(fx!=fy)pre[fx]=fy;}//加入合并

 

并查集模板

标签:for   color   ret   find   nbsp   状态压缩   初始化   初始   code   

原文地址:https://www.cnblogs.com/bluefly-hrbust/p/10280128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!