function.h 183 B

1234567
  1. #ifndef FUNCTION_H
  2. #define FUNCTION_H
  3. bool isswap(std::vector<int> &, size_t, size_t);
  4. void permutation(std::vector<int> &, size_t, size_t, std::vector<std::vector<int>> &);
  5. #endif