FUNCTION
Unused_Items
Reports the unused items in a partial permutation.
Interface
#include <codecogs/maths/combinatorics/permutations/unused_items.h>
using namespace Maths::Combinatorics::Permutations;
Given a whole positive number , representing the size of the original permutation, a partial permutation
is one of size
that satisfies the following conditions:
(1)
with
(2)
This function performs a linear search to find the unused items in the given partial permutation and returns them 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/unused_items.h>
#include <iostream>
int main()
{
int alpha[5] = {1, 5, 2, 7, 9}, n = 10;
std::vector<int> result = Maths::Combinatorics::Permutations::unused_items(n, 5, alpha);
std::cout << "The unused values in the partial permutation Alpha are:";
std::cout << std::endl;
for (int i = 0; i < result.size(); i++)
std::cout << result[i] << " ";
std::cout << std::endl;
return 0;
}Output:
The unused values in the partial permutation Alpha are:
3 4 6 8 10Returns
the unused items in the given partial permutation
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.