I have a collection of sets with numbers in it. Say
A = {-2, 5, 6, 8}
B = {-2, 4}
C = {-2, 4, 6, 8}
D = {1, -2, 15}
E = {1, 4, 15}
F = {1, 15}
G = {2, 5, 6, 15}
H = {2, 6, 15}
Now I want to find a set of 4 numbers and find the sets which belong to this set.
For instance, I can define a set here X = {1, -2, 4, 15} and one sees that B, D, E and F belong to this set. Finding these sets is not very difficult.
However, the problem I am facing is that I want to identify all sets with a length of m numbers within this collection. So in fact, when taking the above example as input, an algorithm that gets m = 4, and {A,B,C,D,E,F,G,H} as inputs and gives me {B,D,E,F} and {B, C} (since they all contain numbers in the set {-2, -4, 6, 8}).
The only way I could come up with the answer was to generate all sets of length = 4 possible with the numbers in the sets available and identify whether or not every set fits. This seems a bit blunt.
Any good tips? (Java or PHP)?
