并查集 2025-3-22 12:08 | 29 | 0 | 理论技术 39 字 | 2 分钟 #include <bits/stdc++.h> using namespace std; const int N = 10010; int fa[N]; inline void init(int n) { for (int i = 1; i <= n; i++) fa[i] = i; } inline int find(int … C/C++并查集算法