vote up 4 vote down star

Is there C++ template class that implements operations with permutations and permutation group? Such class has to implement finding product and inverse, multiplication, etc.

flag

64% accept rate
In modern C++, you would not use a class for this. You would probably use multiple function templates. One function template per operation you want to support, with the actual input ranges templatized. – MSalters Jul 30 at 12:37
Functional programming is not an option. Object-oriented programming is good. I really need template class. – Alexey Malistov Jul 30 at 12:47
2  
@MSalters: What's the "input range" for a function which takes two permutations, and returns the product of those permutations? Are you suggesting that permutations themselves are best represented to the client as iterator pairs rather than as opaque objects? I think Alexey is after something with more knowledge of group theory than std::next_permutation. – Steve Jessop Jul 30 at 13:52

3 Answers

vote up 2 vote down

This is the best I've found... but is in C so you'll have to write a wrapper. CodeCogs also gives you a library on combinatorics.

link|flag
vote up -1 vote down

STL includes a function for permutation in algorithm.h. Here is an example for that.

int main () {
  int myints[] = {1,2,3};
  cout << "The 3! possible permutations with 3 elements:\n";
  sort (myints,myints+3);
  do {
    cout << myints[0] << " " << myints[1] <<" " << myints[2] << endl;
  } while ( next_permutation (myints,myints+3) );
  return 0;
}
link|flag
Please, "algorithm" not "algorithm.h"! – KTC Jul 30 at 11:27
1  
How does it help me to find inverse permution for instance? – Alexey Malistov Jul 30 at 11:29
It doesn't. This function merely enumerates the members of the permutation group. It knows nothing about the structure of the group -- it just relies on the elements of the input array having a defined order. – Steve Jessop Jul 30 at 12:18
vote up 0 vote down

I don't know of one, but it should be easy enough to implement. Internally you could represent the permutation as a vector e.g. (1 3 4 2 7 5 6) being a perm of 1-7 sending 1->1, 2->3, 3->4, 4->2 etc. or as a set of cycles e.g. (1) (2 3 4) (5 7 6), and implement the operations in terms of these. Presumably the template argument would be the size of the permutation group.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.