Tagged Questions

4
votes
6answers
230 views

Fastest way to perform subset test operation on a large collection of sets with same domain

Assume we have trillions of sets stored somewhere. The domain for each of these sets is the same. It is also finite and discrete. So each set may be stored as a bit field (eg: 0000100111...) of a ...
4
votes
12answers
3k views

efficient algorithm to compare similarity between sets of numbers?

I have a large number of sets of numbers. Each set contains 10 numbers and I need to remove all sets that have 5 or more number (unordered) matches with any other set. For example: set 1: ...
3
votes
1answer
164 views

Finding overlapping sets

I'm writing a Digital Fountain system in C#. Part of this system creates me sets of integers, I need to find the combinations of sets which create can leave me with a set of just one item. What's the ...
2
votes
3answers
324 views

determine if intersection of a set with conjunction of two other sets is empty

For any three given sets A, B and C: is there a way to determine (programmatically) whether there is an element of A that is part of the conjunction (edit: intersection) of B and C? example: A: all ...
1
vote
1answer
36 views

Approaches for using and analyzing set data in time

I am designing an interactive installation for a gallery where I will receive input telling me which of 8 input transducers have been bridged. For example if someone touches strip number 1, I will be ...
0
votes
4answers
177 views

Finding vertices in an ordered set of a complete graph

Problem: For an ordered set of edges E of a complete graph Kn, given an edge Ei, find the edge's vertices (v, w)_Ei. Note: This is likely not a problem specific to graph theory, although it was ...