Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
2answers
1k views

Understanding boost::disjoint_sets

I need to use boost::disjoint_sets, but the documentation is unclear to me. Can someone please explain what each template parameter means, and perhaps give a small example code for creating a ...
8
votes
4answers
845 views

c++ test if 2 sets are disjoint

I know the STL has set_difference, but I need to just know if 2 sets are disjoint. I've profiled my code and this is slowing my app down quite a bit. Is there an easy way to see if 2 sets are ...
7
votes
3answers
2k views

Implementing Disjoint Sets (Union Find) in C++

I am trying to implement Disjoint Sets for use in Kruskal's algorithm, but I am having trouble understanding exactly how it should be done and in particular, how to manage the forest of trees. After ...
6
votes
3answers
666 views

What operations can be performed on disjoint sets?

I just studied the disjoint set data structure and I know that it is also called "union-find data structures", union and find are two main operations of this data structure. We can can perform union ...
5
votes
2answers
1k views

Union/find algorithm without union by rank for disjoint-set forests data structure

Here's a breakdown on the union/find algorithm for disjoint set forests on wikipedia: Barebone disjoint-set forests... (O(n)) ... with union by rank ... (now improved to O(log(n)) ... with path ...
4
votes
2answers
102 views

How to use Disjoint Sets in Connected Component labeling?

I am having some hard time using Disjoint Sets in Connected Component Labeling. I have looked on many examples and also on this question where Bo Tian provided a very good implementation of Disjoint ...
3
votes
1answer
613 views

Implementing equivalence relations in C++ (using boost::disjoint_sets)

Assume you have many elements, and you need to keep track of the equivalence relations between them. If element A is equivalent to element B, it is equivalent to all the other elements B is equivalent ...
3
votes
2answers
773 views

O(1) Make, Find, Union in Disjoint Sets Data Structure

Today, I had discussion with someone about Kruskal Minimum Spanning Tree algorithm because of page 13 of this slide. The author of the presentation said that if we implement disjoint sets using ...
2
votes
3answers
322 views

Implementing Disjoint Set System In Python

What I have so far is largely based off page 571 of "Introduction To Algorithms" by Cormen et al. I have a Node class in python that represents a set: class Node: def __init__(self, parent, rank ...
2
votes
1answer
124 views

What is the order in this Union by Rank diagram?

I'm having trouble understanding the following diagram: Why is A linked to D instead of B? Why is C linked to F instead of D?
1
vote
0answers
126 views

ConcurrentDictionary and Disjoint Sets of Keys

There are 3 threads. Each of them works (reads, writes) with its own set of dictionary keys. So keys are mutually exclusive for different threads. There are also multiple threads which only read data. ...
1
vote
2answers
607 views

Kruskal's algorithm and disjoint-set data structure: Do I need the following two lines of code?

I've implemented Kruskal's algorithm in C++ using the disjoint-set data structure according to Wikipedia like this: #include <stdio.h> #include <algorithm> #define MAX_EDGES 10000000 ...
1
vote
1answer
142 views

Best-case performance of disjoint set forests, and proving lower bounds of algorithms

There is a question on an assignment that was due today which solutions have been released for, and I don't understand the correct answer. The question deals with best-case performance of disjoint ...
1
vote
3answers
851 views

Disjoint set as linked list

Can anyone point me to some info on Disjoint sets as linked list? I cant find any code on this. Language C++
1
vote
3answers
206 views

Amortized time per operation using disjoint sets

I happened to read on Wikipedia that the amortized time per operation on a disjoint set (union two elements, find parent of a specific element) is O(a(n)), where a(n) is the inverse Ackermann ...
0
votes
1answer
35 views

Determine whether a grammar is an LL using pairwise disjoint test

I have three grammars: A -> aB | b | CBB B -> aB | ba | aBb C -> aaA | b | caB I need to "determine whether [they] are LL grammars by performing the pairwise disjoint test, showing the first sets ...
0
votes
2answers
72 views

Python: Algorithm Traverse Tree that expands at each node

I have a dictionary with id and multiple values for each ID which are strings. For each value in that for each Id I make a database query and get set results: {111: Run, Jump, swim} {222: Eat, drink} ...
0
votes
1answer
85 views

Function-call operator overload & destructor help

I think my destructor is good now... but still not sure how to call print_set from within the operator() overload. It outputs as it should, but I feel like there is an easy way to just call print_set ...
0
votes
1answer
401 views

How might Union/Find data structures be applied to Kruskal's algorithm?

http://en.wikipedia.org/wiki/Disjoint_sets http://en.wikipedia.org/wiki/Kruskal's_algorithm Union/Find data structure being used for disjoint sets...
-1
votes
1answer
668 views

Disjoint Set ADT Implementation in c++

Hay Dear! I have problem in implementing disjoint set ADT in c++ due to the fact that our teacher only explained the union and find operations. I have full concept of union and find but still I am ...