I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
get GPL
COST (GBP)
this unit 0.50
sub units 0.19
+
0

inverse

Calculates the inverse of the given permutation.
Controller: CodeCogs

Dependents

Info

Interface

C++

Inverse

 
std::vector<int>inverseintn
int*p )
The inverse of a permutation is a permutation \inline \tau such that where \inline \sigma \circ \tau represents multiplication. This function searches for the permutation \inline \tau with the property stated above and returns it as a C++ vector object.

References:

SUBSET, a C++ library of combinatorial routines, http://www.csit.fsu.edu/~burkardt/cpp_src/subset/subset.html

Example 1

#include <codecogs/maths/combinatorics/permutations/inverse.h>
#include <iostream>
int main()
{
  int sigma[5] = {5, 2, 1, 4, 3};
  std::vector<int> result = Maths::Combinatorics::Permutations::inverse(5, sigma);
  std::cout << "The inverse of the Sigma permutation is: ";
  std::cout << std::endl;
  for (int i = 0; i < 5; i++)
    std::cout << result[i] << " ";
  std::cout << std::endl;
  return 0;
}
Output:
The inverse of the Sigma permutation is:
3 2 5 4 1

Returns

the inverse of the given permutation p

Authors

Lucian Bentea (August 2005)
Source Code

Source code is available when you agree to a GP Licence or buy a Commercial Licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.