Is there C++ template class that implements operations with permutations and permutation group? Such class has to implement finding product and inverse, multiplication, etc.
|
|
|||||||||
|
|
|
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. |
||
|
|
|
|
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;
}
|
||||||||
|
|
|
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. |
||
|
|
