I have a List of elements (1, 2, 3), and I need to get the superset (powerset) of that list (without repeating elements). So basically I need to create a List of Lists that looks like:

{1}
{2}
{3}
{1, 2}
{1, 3}
{2, 3}
{1, 2, 3}

What is the best (simplicity > efficiency in this case, the list won't be huge) way to implement this? Preferably in Java, but a solution in any language would be useful.

link|improve this question

1  
You want all subsets of that list. I'd suggest recursion. However, if you are dealing with, say, more than 30-40 elements, you won't be able to deal with the HUGE (over 1TB of data) you have. What is this used for? – Paxinum Aug 26 '11 at 14:57
2  
This data structure you're looking for is called a Powerset (the diffence being that it also contains an empty set). It's already been discussed on SO. – Zenzen Aug 26 '11 at 14:58
Thanks Zenzen for pointing me in the right direction...I found stackoverflow.com/questions/1670862/…. – Steve Aug 26 '11 at 15:18
1  
Those are not permutations, those are subsets. – job Aug 26 '11 at 15:20
feedback

1 Answer

up vote 6 down vote accepted

Use bitmasks:

int allMasks = (1 << N);
for (int i = 1; i < allMasks; i++)
{
    for (int j = 0; j < N; j++)
        if ((i & (1 << j)) > 0) //The j-th element is used
           System.out.print((j + 1) + " ");

    System.out.println();
}

Here are all bitmasks:

1 = 001 = {1}
2 = 010 = {2}
3 = 011 = {1, 2}
4 = 100 = {3}
5 = 101 = {1, 3}
6 = 110 = {2, 3}
7 = 111 = {1, 2, 3}

You know in binary the first bit is the rightmost.

link|improve this answer
1  
Love it! Really cool solution. – Zenzen Aug 26 '11 at 15:01
This is very interesting...you're obviously a lot smarter than I am though - give me some time to wrap my mind around this....is N the number of elements in the original list? And am I mapping the objects in my list to integers? – Steve Aug 26 '11 at 15:08
@Steve - Yes, N is the number of elements - in your example above N = 3. Think in binary - the bit is 0 if the element is not used and the bit is 1 if the element is used. For example 5 = 101 in binary. This means 1 and 3 are used. = {1, 3} – Petar Minchev Aug 26 '11 at 15:47
@Steve - Look at my edit. – Petar Minchev Aug 26 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.