Tagged Questions
The disjoint-union tag has no wiki summary.
5
votes
1answer
774 views
Disjoint Union in LINQ
I have two sets (ILists) where I need all the items from the 1st list, where the item is not in the second list.
Can anyone point me to the best way of achieving this with a LINQ statement?
3
votes
2answers
728 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
5answers
2k views
mysql SELECT NOT IN () — disjoint set?
I'm having a problem getting a query to work, which I think should work. It's in the form
SELECT DISTINCT a, b, c FROM t1 WHERE NOT IN ( SELECT DISTINCT a,b,c FROM t2 ) AS alias
But mysql chokes ...
0
votes
1answer
58 views
Disjoint union-find analysis
In disjoint union suppose we have to merge two trees whose heights are respectively h1 and h2. Using this technique, the height of the resulted merged tree will be max(h1, h2) if h1 not equal to h2, ...
0
votes
2answers
170 views
SQL query with AND/OR logical operators
fI have what seems to be a relatively simple AND/OR clause that is giving me a bit of a headache.
$query = "SELECT ...