Tagged Questions

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 ...
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
76 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
2answers
71 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
728 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 ...