c – 联合查找数据结构
发布时间:2020-12-16 03:24:23 所属栏目:百科 来源:网络整理
导读:对于许多问题,我看到的解决方案是使用union-find数据结构.我试图阅读它,并考虑如何实现(使用C).我目前的理解是,它只不过是一套.所以要找到属于哪一个元素,我们需要n * log n操作.当我们要执行工会时,我们必须找到需要合并的两个集合,并对它们执行一个set_uni
对于许多问题,我看到的解决方案是使用union-find数据结构.我试图阅读它,并考虑如何实现(使用C).我目前的理解是,它只不过是一套.所以要找到属于哪一个元素,我们需要n * log n操作.当我们要执行工会时,我们必须找到需要合并的两个集合,并对它们执行一个set_union.这对我来说看起来并不高效.我对这个数据结构的理解是正确的还是我错过了什么?
解决方法
这是相当晚的回复,但这可能没有在stackoverflow的其他地方回答,因为这是搜索union-find的人的最多页面,这里是详细的解决方案.
Find-Union是一个非常快速的操作,在几乎不变的时间内执行. class UF { int *id,cnt,*sz; public: // Create an empty union find data structure with N isolated sets. UF(int N) { cnt = N; id = new int[N]; sz = new int[N]; for (int i = 0; i<N; i++) id[i] = i,sz[i] = 1; } ~UF() { delete[] id; delete[] sz; } // Return the id of component corresponding to object p. int find(int p) { int root = p; while (root != id[root]) root = id[root]; while (p != root) { int newp = id[p]; id[p] = root; p = newp; } return root; } // Replace sets containing x and y with their union. void merge(int x,int y) { int i = find(x); int j = find(y); if (i == j) return; // make smaller root point to larger one if (sz[i] < sz[j]) { id[i] = j,sz[j] += sz[i]; } else { id[j] = i,sz[i] += sz[j]; } cnt--; } // Are objects x and y in the same set? bool connected(int x,int y) { return find(x) == find(y); } // Return the number of disjoint sets. int count() { return cnt; } }; 如果您愿意,请投票或接受. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |