Cycles
Counts the number of cycles in a permutation.
Controller: CodeCogs
Contents
Dependents
Interface
C++
Cycles
intcycles( | int | n | |
int* | p | ) |
Example:
#include <codecogs/maths/combinatorics/permutations/cycles.h> #include <iostream> int main() { int beta[9] = {2, 3, 9, 6, 7, 8, 5, 4, 1}; std::cout << "The number of cycles of the Beta permutation: "; std::cout << Maths::Combinatorics::Permutations::cycles(9, beta); std::cout << std::endl; return 0; }
Output:
The number of cycles of the Beta permutation: 3
References:
SUBSET, a C++ library of combinatorial routines, http://www.csit.fsu.edu/~burkardt/cpp_src/subset/subset.htmlParameters
n the size of the permutation p the actual permutation stored as an array
Returns
- the number of cycles found in the permutation
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.