Related to this question, I am wondering the algorithms (and actual code in java/c/c++/python/etc., if you have!) to generate all combinations of r elements for a list with m elements in total. Some of these m elements may be repeated.
Thanks!
|
Related to this question, I am wondering the algorithms (and actual code in java/c/c++/python/etc., if you have!) to generate all combinations of Thanks! |
||||
|
Here is a recursion that I believe is closely related to Jean-Bernard Pellerin's algorithm, in Mathematica. A faster method (within Mathematica) exists using This takes input as the number of each type of element. The output is in similar form. For example:
Function:
Use:
{{0, 0, 0, 4}, {0, 0, 1, 3}, {0, 1, 0, 3}, {0, 1, 1, 2}, {0, 2, 0, 2},
{0, 2, 1, 1}, {1, 0, 0, 3}, {1, 0, 1, 2}, {1, 1, 0, 2}, {1, 1, 1, 1},
{1, 2, 0, 1}, {1, 2, 1, 0}, {2, 0, 0, 2}, {2, 0, 1, 1}, {2, 1, 0, 1},
{2, 1, 1, 0}, {2, 2, 0, 0}}
An explanation of this code was requested. It is a recursive function that takes a variable number of arguments. The first argument is This definition therefore is used when there are no more items in the selection set:
If the total of the values of the combination (its length) is equal to Otherwise:
Reading left to right:
|
|||||
|
|
recurse for each element type
This takes as input a list containing lists of items, assuming each inner list represents a unique type of item. You may have to build a sorting function to feed as input to this.
This sorts the list, then creates sublists containing elements that are the same, inserting them into the list of lists |
|||||||||
|
|
I'm going to make this an answer rather than a bunch of comments. My original comment was:
As you pointed out in your comment, you want unique combinations. So, given the array With that array, removing duplicates is very easy. Depending on how you implement it, you either let it generate the duplicates and then filter them after the fact (i.e. selecting unique elements from an array), or you modify the code to include a hash table so that when it generates a combination, it checks the hash table before putting the item into the output array. Looking something up in a hash table is an There is one complication: order is irrelevant. That is, given the array If you sort the initial array first, so that duplicate items are adjacent, then the problem goes away and you can use the hash table idea. There's undoubtedly a way to modify the code to prevent it from generating duplicates. I can see a possible approach, but it would be messy and expensive. It would probably make the algorithm slower than if you just used the hash table idea. The approach I would take:
Although ... a thought that occurred to me. Is it true that if you sort the input array, then any generated duplicates will be adjacent? That is, given the input array |
||||
|
|
elementsarray before you start. That's going to be a lot easier and more efficient than trying to prevent the code from generating duplicates. – Jim Mischel Nov 16 '11 at 17:13