描述
C++ 函数std::algorithm::is_permutation()测试一个序列是否是其他序列的排列。它用二元谓词用于比较。
声明
以下是 std::algorithm::is_permutation() 函数形式 std::algorithm 头文件的声明。
C++11
template <class ForwardIterator1, class ForwardIterator2, class BinaryPredicate> bool is_permutation(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, BinaryPredicate pred);
参数
first1− 将迭代器输入到第一个序列的初始位置。
last1− 将迭代器输入到第一个序列的最终位置。
first2− 将迭代器输入到第二个序列的初始位置。
pred- 一个二元谓词,它接受两个参数并返回 bool。
返回值
如果第一个范围是另一个范围的排列,则返回真,否则返回假。
异常
如果二元谓词或迭代器上的操作抛出异常,则抛出异常。
请注意无效的参数会导致未定义的行为。
时间复杂度
二次方。
示例
下面的例子展示了 std::algorithm::is_permutation() 函数的用法。
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
bool ignore_case(char a, char b) {
return (tolower(a) == tolower(b));
}
int main(void) {
vector<char> v1 = {'A', 'B', 'C', 'D', 'E'};
vector<char> v2 = {'a', 'b', 'c', 'd', 'e'};
bool result;
result = is_permutation(v1.begin(), v1.end(), v2.begin());
if (result == false)
cout << "Both vector doesn't contain same elements." << endl;
result = is_permutation(v1.begin(), v1.end(), v2.begin(), ignore_case);
if (result == true)
cout << "Both vector contains same elements." << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -
Both vector doesn't contain same elements. Both vector contains same elements.
相关用法
- C++ Algorithm is_partitioned()用法及代码示例
- C++ Algorithm is_sorted()用法及代码示例
- C++ Algorithm is_heap()用法及代码示例
- C++ Algorithm is_sorted_until()用法及代码示例
- C++ Algorithm is_heap_until()用法及代码示例
- C++ Algorithm inplace_merge()用法及代码示例
- C++ Algorithm includes()用法及代码示例
- C++ Algorithm iter_swap()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm equal()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm find_if_not()用法及代码示例
- C++ Algorithm for_each()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Library - is_permutation() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。