The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
70 views

Discrete Maths: Check connectivity of a graph after removing a vertex? Efficient Way?

First: I admit that its a part of programming contest(where nothings on a stake to win or something) I've come to the following conclusion after reading the problem & tried following algorithm. ...
0
votes
2answers
70 views

Three-way set Disjointness

this is a question from my practice problems for an upcoming test. I was hoping to get help in finding a more efficient solution to this problem. Right now, I know I can solve this type of problem ...
0
votes
1answer
134 views

Disjoint sets issue

I'm trying to write an implementation of Kruskal's Algorithm using disjoint sets. I think I have it nearly working, but I cannot seem to make a piece of the code work right. The code needs to check ...
0
votes
1answer
355 views

Implementation of Disjoint Sets and Kruskal's Algorithm(and other data structures) in OpenCL

I want to implement Disjoint set Data Structures and Kruskal's algorithm in OpenCL. I have implemented some codes in OpenCL, but don't know how to get started with Data Structures in OpenCL. Djkstra's ...
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
3answers
219 views

Disjoint sets data structures and binomial trees?

Can someone either explain what Disjoint Sets Data Structure is?, or alternatively link me to a YouTube video or article that explains it well. I searched for it a few minutes ago and all I got were ...
0
votes
0answers
29 views

How to calculate the time complexity of an indivual operation in a sequence of operations? (Disjoint set forest, UNION and FIND)

Hi I'm having trouble with this question: Consider the forest implementation of disjoint sets using the Weighted Union (by size) and Path Compression rules. Suppose that we start with n distinct ...
2
votes
1answer
329 views

Disjoint set with Union by Size and Path Compression; possible for taller tree to become subtree of shorter tree?

Hi this is my first time posting here, I have been trying to work out a question for studying but haven't been able to figure it out: We consider the forest implementation of the disjoint-set ...
2
votes
0answers
72 views

Forming Disjoint-Sets of nodes of MST

I have been N nodes and N-1 edges,basically undirected acyclic MST. I want to basically count number of disjoint set of nodes. Two nodes belong to set if they have same parent and and degree of nodes ...
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 ...
1
vote
1answer
228 views

Counting number of members in a disjoint set

I am having a little bit of trouble counting the number of elements in each of my disjoint set members. For example, if someone enters in: Note: first number = source vertex, 2nd number = destination ...
3
votes
3answers
116 views

When is it dangerous to have too many dynamic arrays?

I'm currently writing code for an assignment that deals with cities and bridges. I have to print the cities and bridges out in their respected districts such as: //unorganized inputs from user given ...
1
vote
0answers
38 views

Error mapping Disjoint foreign key

In Mapping Superclass, Subclass Relationship Participation Constraint – Partial Disjoint Constraint - Disjoint Do we have to map a Foreign key from child to parent? If we don't, why not?
1
vote
2answers
51 views

Freebase co-types search timeout

I'm trying to find freebase co-types, that is, given a type you find 'compatible' types: Suppose to start with /people/person, it might be a musician (/music/group_member), but not a music album ...
0
votes
0answers
67 views

Database implementation for a disjoint set structure

I need to implement a sort of disjoint-set structure using a database that will scale to the billions of documents/sets. There are two critically important functions that need to be fast: add (Elem ...
0
votes
1answer
603 views

Can BFS find cycles in a graph?

I am new to graph theory, and so far I have learned only BFS and Disjoint sets in graph theory. If there is a cycle in a given, undirected, connected graph, can I find it using BFS ? My intention is ...
0
votes
2answers
438 views

Disjoint-Set forests in Python alternate implementation

I'm implementing a disjoint set system in Python, but I've hit a wall. I'm using a tree implementation for the system and am implementing Find(), Merge() and Create() functions for the system. I am ...
0
votes
1answer
120 views

How can I manage memory deallocation in disjoint sets in C++?

I have a set of classes to handle Disjoint sets in my C++ app. I have a hard time implementing the destructors for these classes. Can anyone help me on that? What these basically do is: put nodes' ...
9
votes
5answers
435 views

Testing for a circuit when implementing Kruskalls algorithm

I'm trying to write a program that would find the minimum spanning tree. But one problem I am having with this algorithm, is testing for a circuit. What would be the best way to do this in java. Ok ...
0
votes
1answer
1k 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 ...
5
votes
3answers
669 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 ...
0
votes
2answers
146 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
149 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 ...
1
vote
1answer
220 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. ...
2
votes
2answers
2k 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
341 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 ...
3
votes
3answers
1k 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 ...
8
votes
4answers
6k 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 ...
0
votes
1answer
779 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...
37
votes
2answers
2k 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 ...
3
votes
1answer
1k 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
2k 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 ...
3
votes
1answer
544 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?
5
votes
2answers
2k 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 ...
-2
votes
1answer
996 views

Disjoint Set ADT Implementation in C++

I have problem in implementing a disjoint set ADT in C++ due to the fact that our teacher only explained the union and find operations. I fully understand the concepts of union and find but I am still ...
6
votes
3answers
1k 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 ...
8
votes
4answers
2k 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 ...
1
vote
3answers
2k 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
335 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 ...