First, sorry for the ambiguous title.
Assume I have the following group of sets:
Group 1
s1 = ( x1, y1 )
s2 = ( x2 )
Group 2
m1 = ( x1, y1, y2 )
m2 = ( x1 )
m3 = ( x1 , x2 )
For each of the sets in Group 1 - call the set s, I need to find the sets in Group 2 - call it m - such that m is a subset of s.
So, for my example, the answer would be:
s1 -> m2
s2 -> nothing
For now, I'm storing the values in std:set, but I can change that if needed. Also, the sets can get big, so the algorithm needs to be efficient. For now I have a brute-force approach, which I'm not entirely satisfied with.
Any suggestions?
