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?
|
|
Combinations: from Mark Nelson's article on the same topic we have next_combination http://marknelson.us/2002/03/01/next-permutation
|
|||
|
|
|
I am not aware of one. The basic idea is to represent your elements as a bit array. So for example, you have the set S:
To generate the Power Set of S(just generate all numbers that are of size == 3 bits by using the simple addition):
All what you have to do is to find what bits are set, and to relate them to your set's elements. On final note, there is one combination you can produce when you want all elements to be used and that combination is the set it self, because in combinations the order doesn't matter so for sure we are talking about a number of elements n where |
|||||||||||
|
|
I've used this library when I've needed to do this. It has an interface very similar to |
|||||
|
|
Googling for
|
|||||
|
|
|
In case You have no choice, but to implement Your own function maybe this horror can help a bit or maybe other horrors among answers to that question. I wrote it some time ago and the full picture eludes me now :), but the basic idea is this: You have the original set and current combination is a vector of iterators to the elements selected. To get the next combination, You scan your set from right to left looking for a "bubble". By "bubble" I mean one or more adjacent elements not selected. The "bubble" might be immediately at the right. Then, in Your combination, You exchange the first element at the left of the "bubble" and all other elements from the combination, that are to the right in the set, with a subset of adjacent elements that starts at the beginning of the "bubble". |
|||
|
|
|
Enumeration of the powerset (that is, all combinations of all sizes) can use an adaptation of the binary increment algorithm.
The requirement of a bidirectional iterator is unfortunate, and could be worked around. I was going to make it handle identical elements (multisets), but I need to go to bed :v( . Usage:
EDIT: Here is the version for multisets. The set doesn't have to be sorted but identical elements do have to be grouped together.
Output:
|
||||
|
|