Posted 2021-03-12算法3 minutes read (About 475 words)并查集—合并集合并查集可以表示元素中的属于状态,比较重要。其核心元素是father数组,初始化如下: 12345void init() { for(int i = 0; i < n; i++) { father[i] = i }}Read more