并查集总结
程序员文章站
2022-03-24 17:28:14
...
并查集的标准写法
int group(int x){
return f[x]==x?x:f[x]=group(f[x]);
}
void merge(int a,int b){
int x=group(a);
int y=group(b);
if(x!=y){
f[y]=x;
}
}
转载于:https://www.jianshu.com/p/9dd099e145a0
上一篇: 关于PHP Websocket 错误: "stream
下一篇: 基础的数组/链表实现的队列