Tagged Questions
13
votes
8answers
5k views
Obtaining powerset of a set in java
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);
...
4
votes
1answer
178 views
Printing all possible subsets of a list
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}
...
0
votes
3answers
760 views
Java: Generate a Powerset
This could be language agnostic/helpful answers could just be in pseudo-code.
I have a program that I would like to test under a range of inputs. This program takes a set of files, one of which is ...