The powerset of {1, 2, 3} is:

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

Lets say I have a Set in Java...

Set<Integer> mySet = new HashSet<Integer>();
mySet.add(1);
mySet.add(2);
mySet.add(3);
Set<Set<Integer>> powerSet = getPowerset(mySet);

What I want is the function getPowerset, with the best possible order of complexity.
(I think it might be O(2^n) )
Thanks in advance!!!

link|improve this question

1  
Why on earth do you want to do this? – SLaks Nov 4 '09 at 0:15
2  
Surely you are joking Mr. SLaks! – João Nov 4 '09 at 0:19
@JG: No, I'm not. Unless he's doing homework, I can't imagine why one would need a powerset. – SLaks Nov 4 '09 at 1:00
4  
Suppose you have a set of configurations -- say "A", "B" and "C" --, that can be used to parametrize a model, and you want to see which subset yields the best result -- e.g. just "A". A possible solution would be to test each member of the powerset. – João Nov 4 '09 at 21:41
Exactly mister JG – Manuel Aráoz Nov 5 '09 at 4:01
show 1 more comment
feedback

8 Answers

up vote 9 down vote accepted

Yes, it is O(2^n) indeed, since you need to generate, well, 2^n possible combinations. Here's a working implementation, using generics and sets:

public static <T> Set<Set<T>> powerSet(Set<T> originalSet) {
    Set<Set<T>> sets = new HashSet<Set<T>>();
    if (originalSet.isEmpty()) {
    	sets.add(new HashSet<T>());
    	return sets;
    }
    List<T> list = new ArrayList<T>(originalSet);
    T head = list.get(0);
    Set<T> rest = new HashSet<T>(list.subList(1, list.size())); 
    for (Set<T> set : powerSet(rest)) {
    	Set<T> newSet = new HashSet<T>();
    	newSet.add(head);
    	newSet.addAll(set);
    	sets.add(newSet);
    	sets.add(set);
    }		
    return sets;
}

And a test, given your example input:

 Set<Integer> mySet = new HashSet<Integer>();
 mySet.add(1);
 mySet.add(2);
 mySet.add(3);
 for (Set<Integer> s : SetUtils.powerSet(mySet)) {
     System.out.println(s);
 }
link|improve this answer
feedback

Manuel,

Actually, I've written code that does what you're asking for in O(1). The question is what you plan to do with the Set next. If you're just going to call size() on it, that's O(1), but if you're going to iterate it that's obviously O(2^n).

contains() would be O(n), etc.

Do you really need this?

EDIT: This code is now available in Guava.

link|improve this answer
I need to iterate over every subset – Manuel Aráoz Nov 5 '09 at 4:02
But do you need to store every subset? – finnw Nov 5 '09 at 13:10
feedback

Here is a tutorial describing exactly what you want, including the code. You're correct in that the complexity is O(2^n).

link|improve this answer
feedback

Here's a solution where i use a generator, the advantage being, the entire power set is never stored at once...so you can iterate over it one-by-one without needing it to be stored in memory, i'd like to think it's a better option...Note the Complexity is the same O(2^n) but the memory requirements reduce (assuming the Garbage Collector Behaves! ;) )

/**
 * 
 */
package org.mechaevil.util.Algorithms;

import java.util.BitSet;
import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;

/**
 * @author st0le
 *
 */
public class PowerSet<E> implements Iterator<Set<E>>,Iterable<Set<E>>{
    private E[] arr = null;
    private BitSet bset = null;

    @SuppressWarnings("unchecked")
    public PowerSet(Set<E> set)
    {
        arr = (E[])set.toArray();
        bset = new BitSet(arr.length + 1);
    }

    @Override
    public boolean hasNext() {
        return !bset.get(arr.length);
    }

    @Override
    public Set<E> next() {
        Set<E> returnSet = new TreeSet<E>();
        for(int i = 0; i < arr.length; i++)
        {
            if(bset.get(i))
                returnSet.add(arr[i]);
        }
        //increment bset
        for(int i = 0; i < bset.size(); i++) 
        {
            if(!bset.get(i))
            {
                bset.set(i);
                break;
            }else
                bset.clear(i);
        }

        return returnSet;
    }

    @Override
    public void remove() {
        throw new UnsupportedOperationException("Not Supported!");
    }

    @Override
    public Iterator<Set<E>> iterator() {
        return this;
    }

}

To call it use this pattern

        Set<Character> set = new TreeSet<Character> ();
        for(int i = 0; i < 5; i++)
            set.add((char) (i + 'A'));

        PowerSet<Character> pset = new PowerSet<Character>(set);
        for(Set<Character> s:pset)
        {
            System.out.println(s);
        }

It's from my Project Euler Library... :)

link|improve this answer
feedback

If S is a finite set with N elements, then the power set of S contains 2^N elements. The time to simply enumerate the elements of the powerset is 2^N, so O(2^N) is a lower bound on the time complexity of (eagerly) constructing the powerset.

Put simply, any computation that involves creating powersets is not going to scale for large values of N. No clever algorithm will help you ... apart from avoiding the need to create the powersets!

link|improve this answer
feedback

http://freakyss.blogspot.com/2010/11/powerset-program-in-java.html

the code z simple....n its working....enjy:)

link|improve this answer
feedback

I was looking for a solution that wasn't a huge as the ones posted here. Despite being fairly old, figured I'd post the code I just wrote. This targets java 7, so it will require a handful of pastes for versions 5 and 6.

Set<Set<Object>> powerSetofNodes(Set<Object> orig) {
Set<Set<Object>> powerSet = new HashSet<>(), runSet = new HashSet<>(), 
           thisSet = new HashSet<>();
while(powerSet.size() < (Math.pow(2, orig.size())-1)) {              
    if(powerSet.isEmpty()) {
        for(Object o : orig) {
            Set<Object> s = new TreeSet<>();
            s.add(o);
            runSet.add(s);
            powerSet.add(s);
        }
        continue;
    }
    for(Object o : orig) {
        for(Set<Object> s : runSet) {
            Set<Object> s2 = new TreeSet<>();
            s2.addAll(s);
            s2.add(o);
            powerSet.add(s2);
            thisSet.add(s2);
        }
    }
    runSet.clear();
    runSet.addAll(thisSet);
    thisSet.clear();
}
powerSet.add(new TreeSet());
return powerSet;

Here's some example code to test:

Set<Object> hs = new HashSet<>();
hs.add(1);
hs.add(2);
hs.add(3);
hs.add(4);
for(Set<Object> s : powerSetofNodes(hs)) {
    System.out.println(Arrays.toString(s.toArray()));
}
link|improve this answer
feedback

One way without recursion is the following: Use a binary mask and make all the possible combinations.

public HashSet<HashSet> createPowerSet(Object[] array)
{
    HashSet<HashSet> powerSet=new HashSet();
    boolean[] mask= new boolean[array.length];

    for(int i=0;i<Math.pow(2, array.length);i++)
    {
        HashSet set=new HashSet();
        for(int j=0;j<mask.length;j++)
        {
            if(mask[i])
                set.add(array[j]);
        }
        powerSet.add(set);      

        increaseMask(mask);
    }

    return powerSet;
}

public void increaseMask(boolean[] mask)
{
    boolean carry=false;

    if(mask[0])
        {
            mask[0]=false;
            carry=true;
        }
    else
        mask[0]=true;

    for(int i=1;i<mask.length;i++)
    {
        if(mask[i]==true && carry==true)
        mask[i]=false;
        else if (mask[i]==false && carry==true)
        {
            mask[i]=true;
            carry=false;
        }
        else 
            break;

    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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