Tagged Questions
A powerset is the set of all subsets for a given set.
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);
...
5
votes
3answers
129 views
Generate all “unique” subsets of a set (not a powerset)
Let's say we have a Set S which contains a few subsets:
- [a,b,c]
- [a,b]
- [c]
- [d,e,f]
- [d,f]
- [e]
Let's also say that S contains six unique elements: a, b, c, d, e and f.
How can we find all ...
4
votes
1answer
156 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}
...
4
votes
1answer
321 views
why Data.Set has no powerset function?
I was looking at Data.Set, and I found out that it has no powerset function. Why?
I can implement it like this:
import Data.Set (Set, empty, fromList, toList, insert)
powerset :: (Ord a) => Set ...
4
votes
3answers
141 views
What is the running time of this powerset algorithm
I have an algorithm to compute the powerset of a set using all of the bits between 0 and 2^n:
public static <T> void findPowerSetsBitwise(Set<T> set, Set<Set<T>> results){
...
4
votes
1answer
350 views
Algorithm to get every possible subset of a list, in order of their product, without building and sorting the entire list (i.e Generators)
Practically, I've got a set of objects with probabilities, and I want to look at each possible group of them, in order of how likely it is that they're all true assuming they're independent -- i.e. in ...
3
votes
1answer
110 views
Generate a powerset without a stack in Erlang
Note: This is a sequel to my previous question about powersets.
I have got a nice Ruby solution to my previous question about generating a powerset of a set without a need to keep a stack:
class ...
3
votes
3answers
142 views
Memory efficient power set algorithm
Trying to calculate all the subsets (power set) of the 9-letter string 'ABCDEFGHI'.
Using standard recursive methods, my machine hits out of memory (1GB) error before completing. I have no more ...
3
votes
2answers
239 views
selecting a random element of the power set
For a problem that I'm working on right now, I would like a reasonably uniform random choice from the powerset of a given set. Unfortunately this runs right into statistics which is something that ...
3
votes
3answers
2k views
What algorithm can calculate the power set of a given set?
I would like to efficiently generate a unique list of combinations of numbers based on a starting list of numbers.
example start list = [1,2,3,4,5] but the algorithm should work for [1,2,3...n]
...
3
votes
6answers
1k views
next_permutation for combinations or subsets in powerset
Is there some equivalent library or function that will give me the next combination of a set of values like next_permutation in does for me?
2
votes
3answers
139 views
Generate a powerset of a set without keeping a stack in Erlang or Ruby
I would like to generate a powerset of a rather big set (about 30-50 elements) and I know that it takes 2^n to store the powerset.
Is it possible to generate one subset at a time?
I.e. generate a ...
2
votes
3answers
215 views
Generate powerset lazily
I want to calculate powerset of a set. Because I don't need the whole powerset at a time, it's better to generate it lazily.
For example:
powerset (set ["a"; "b"; "c"]) =
seq {
set [];
set ...
2
votes
3answers
185 views
Confused with F# List.Fold (powerset function)
I understand and wrote a typical power set function in F# (similar to the Algorithms section in Wikipedia)
Later I found this implementation of powerset which seems nice and compact, expect that I do ...
2
votes
4answers
979 views
How to calculate the max. number of combinations possible? [closed]
Possible Duplicates:
Display possible combinations of string
algorithm that will take numbers or words and find all possible combinations
If I have 3 strings, such as:
"abc def xyz"
...
1
vote
2answers
36 views
How can I find all 'long' simple acyclic paths in a graph?
Let's say we have a fully connected directed graph G. The vertices are [a,b,c]. There are edges in both directions between each vertex.
Given a starting vertex a, I would like to traverse the graph ...
1
vote
1answer
93 views
Parallel power set generation in Erlang?
There is a lot of example implementations of generating a powerset of a set in Java, Python and others, but I still can not understand how the actual algorithm works.
What are the steps taken by an ...
1
vote
3answers
219 views
Power Set and Union
Following set is given:
X := {Horse, Dog}
Y := {Cat}
I define the set:
M := Pow(X) u {Y}
u for union
The resulting set of the power set operation is:
Px := {0, {Horse}, {Dog}, {Horse, Dog}}
...
0
votes
1answer
75 views
How do I generate set partitions of a certain size?
I would like to generate partitions for a set in a specific way: I need to filter out all partitions which are not of size N in the process of generating these partitions. The general solution is ...
0
votes
1answer
63 views
Generate a powerset with the help of a binary represenation
I know that "a powerset is simply any number between 0 and 2^N-1 where N is number of set members and one in binary presentation denotes presence of corresponding member".
(Hynek -Pichi- Vychodil)
I ...
0
votes
1answer
75 views
Generate a powerset of a set containing only subsets of a certain size
I would like to generate a powerset P(S) of a set S. I would like P(S) to have only subsets equal to a certain size.
For example, if we have S = [1,2,3,4], then limited_powerset(S,3) will be ...
0
votes
0answers
11 views
Divide a set by other set in all possible variations
Imagine we have a set S = [a,b,c,d,e,f]. And we have a set N = [1,2,3].
How can we assign elements of S to elements of N in all possible combinations?
The desired result will hold something like ...
0
votes
1answer
106 views
Generate all possible subgraphs of a directed graph keeping the number of vertices
I have two lists of vertices: V and S.
I would like to generate all possible directed graphs from V and S so, that each vertex from V has only one out-edge and exactly one in-edge, and each vertex ...
0
votes
2answers
69 views
Power set elements of a certain length
Given an array of elements in PHP, I wish to create a new two-dimensional array containing only those elements of the power set that are a specific length. As an example, for the following array:
...
0
votes
3answers
727 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 ...