A union/find data structure is a data structure used for maintaining a partition of a set.

learn more… | top users | synonyms

0
votes
0answers
28 views

how could I make sure the index is the smallest in union-find algorithm?

I have a N*N boolean symmetric matrix to show the relationship of each element. for example matrix 1 0 1 0 1 1 1 1 1 means element 1 has relationship with 1, 3; element 2 has relationship with ...
0
votes
2answers
91 views

Count how many different vectors left after union

I'm only using std::vector in this problem and each vector is ordered without duplicate. Now I want to union the vectors that have same numbers. So 2 3 can be union with 3 4 5 but not with 4 5 nor 1 ...
1
vote
3answers
136 views

Set union algorithm using vector c++

I'm only using std::vector in this problem and I can guarantee no duplicates in each vector(but there isn't any order in each vector). How do I union the vectors I have? Example: If I have following ...
7
votes
1answer
108 views

Equivalence classes and union/find in a functional language

For an automata algorithm, I require a fast Union-Find data structure in a functional language. Since I need to formally prove the correctness of the data structure, I would prefer a simple structure. ...
0
votes
0answers
97 views

How to update a force graph in d3.js

Here's a jsfiddle I've created. http://jsfiddle.net/rahulsom/aavtj/ It's a visualization of the union find problem. So I was successfully able to create the nodes and I am able to create the links ...
1
vote
1answer
70 views

Why does an index in Quick-Union Weighted remain size 1 when merged with a bigger tree?

I've been looking into algorithms using a class on coursera. In one of the first lectures, Quick Union Weighted is being discussed. I get what it does and I've tested it out using their code and ...
2
votes
3answers
267 views

Implementing path compression in a disjoint set data structure?

Here is my Objective-C implementation of a disjoint set. - Positive number point to parent. - Negative number indicate root & children count. (So they each start disjointed at -1.) - The index ...
1
vote
1answer
195 views

Weighted quick-union with path compression- Implementation

I am implementing the quick union algorithm for a union/find structure. In the implementation given at the "Algorithms in Java" book site, the Princeton implementation fails to maintain the size ...
1
vote
1answer
69 views

Disjoint-sets for really big data

Are there any enhanced Disjoint-sets algorithm for really big data (such as more than 2^32 elements and more than 2^32 pair to union)? Obviously the biggest problem is that I cannot make such a large ...
8
votes
1answer
260 views

Union-find in a graph structure

I have a record describing a graph as sets of nodes and edges: data MyGraph a = MyGraph { nodes :: Set a, edges :: Set (a,a), components :: UnionFindM a -- ? } emptyGraph = MyGraph{ nodes = ...
0
votes
2answers
975 views

weighted quick union with path compression algorithm java

i don't get one thing. there is a "weighted quick-union with path compression" algorithm. the code: public class WeightedQU { private int[] id; private int[] iz; public WeightedQU(int ...
0
votes
0answers
636 views

find the id array for quick find algorithm [closed]

Give the id[] array that results from the following sequence of union operations on a set of 10 items using the quick-find algorithm. 9-6 8-7 4-3 2-9 0-7 1-4 Recall: our quick-find convention for ...
22
votes
1answer
487 views

Avoiding IORefs in pure code

I noticed that Data.UnionFind uses the IO monad to provide pointers via IORefs. I imagine everyone happily calls unsafePerformIO when using it locally in pure code, since the data structure is so well ...
1
vote
2answers
732 views

quick find algorithm - union operation - is it same as union in set theory?

I am unable to correlate union operation in quick find algorithm with general meaning of A U B in set theory. Book(Algorithms in C++ Robert Sedgewick) tells union operation is "scanning throgh the ...
1
vote
1answer
154 views

Merging two labels in connect components during the first pass

In connected components labeling, if I see that the pixel to the left and the pixel above the current pixel have the same color but different labels, can't I automatically reassign their labels to be ...
2
votes
3answers
2k views

Union-find data structure

For many problems I see the solution recommended is to use a union-find data structure. I tried to read about it and think about how it is implemented (using C++). My current understanding is that it ...
0
votes
2answers
600 views

Union-Find algorithm

I was reading about the famous union-find problem, and the book was saying: "either the find or the union will take O(n) time, and the other one will take O(1)...." But what about using bit strings ...
0
votes
1answer
1k views

How to use union-find, minheap, Kruskal's, and a sort algorithm to create a minimum cost spanning tree? (C++)

I apologize if this question is a bit broad, but I'm having a difficult time trying to understand how I would create a minimum cost spanning tree. This is in C++ if it matters at all. From what I ...