vote up 2 vote down star

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!!!

flag

78% accept rate
Why on earth do you want to do this? – SLaks Nov 4 at 0:15
Surely you are joking Mr. SLaks! – JG Nov 4 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 at 1:00
1  
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. – JG Nov 4 at 21:41
Exactly mister JG – Manuel Nov 5 at 4:01

4 Answers

vote up 2 vote down check

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|flag
vote up 4 vote down

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?

link|flag
I need to iterate over every subset – Manuel Nov 5 at 4:02
But do you need to store every subset? – finnw Nov 5 at 13:10
vote up 0 vote down

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|flag
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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