描述
C++ 函数std::algorithm::is_permutation()测试一个序列是否是其他序列的排列。它用运算符 ==用于比较。
声明
以下是 std::algorithm::is_permutation() 函数形式 std::algorithm 头文件的声明。
C++11
template <class ForwardIterator1, class ForwardIterator2> bool is_permutation(ForwardIterator1 first1,ForwardIterator1 last1, ForwardIterator2 first2);
参数
first1− 将迭代器输入到第一个序列的初始位置。
last1− 将迭代器输入到第一个序列的最终位置。
first2− 将迭代器输入到第二个序列的初始位置。
返回值
如果第一个范围是另一个范围的排列,则返回真,否则返回假。
异常
如果元素比较或迭代器上的操作抛出异常,则抛出异常。
请注意无效的参数会导致未定义的行为。
时间复杂度
二次方。
示例
下面的例子展示了 std::algorithm::is_permutation() 函数的用法。
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(void) {
vector<int> v1 = {1, 2, 3, 4, 5};
vector<int> v2 = {5, 4, 3, 2, 1};
bool result;
result = is_permutation(v1.begin(), v1.end(), v2.begin());
if (result == true)
cout << "Both vector contains same elements." << endl;
v2[0] = 10;
result = is_permutation(v1.begin(), v1.end(), v2.begin());
if (result == false)
cout << "Both vector doesn't contain same elements." << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -
Both vector contains same elements. Both vector doesn't contain same elements.
相关用法
- C++ Algorithm is_permutation()用法及代码示例
- 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 Library - is_permutation() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。