std::partition_copy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <algorithm> 中定义
|
||
template< class InputIt, class OutputIt1, class OutputIt2, class UnaryPredicate > |
(C++11 起) | |
复制的元素满足谓词
p
从[first, last)
的范围的范围内开始,d_first_true
,和复制元素没有开始的范围内,在满足p
d_first_false
.原文:
Copies the elements that satisfy the predicate
p
from the range [first, last)
to the range beginning at d_first_true
, and copies the elements that do not satisfy p
to the range beginning at d_first_false
.目录 |
[编辑] 参数
first, last | - | 范围内的元素进行排序
|
d_first_true | - | 满足p的元素的输出范围的开头
原文: the beginning of the output range for the elements that satisfy p |
d_first_false | - | 元素没有满足p的输出范围的开头
原文: the beginning of the output range for the elements that do not satisfy p |
p | - | unary predicate which returns true 如果元素应该被放置在d_first_true . 原文: if the element should be placed in d_first_true The signature of the predicate function should be equivalent to the following: bool pred(const Type &a); The signature does not need to have const &, but the function must not modify the objects passed to it. |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-OutputIt1 必须满足 OutputIterator 的要求。
| ||
-OutputIt2 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
构建一个pair
d_first_true
范围和d_first_false
范围的结束迭代器迭代器.原文:
A pair constructed from the iterator to the end of the
d_first_true
range and the iterator to the end of the d_first_false
range.[编辑] 复杂度
究竟
distance(first, last)
应用程序的p
原文:
Exactly
distance(first, last)
applications of p
.[编辑] 可能的实现
template<class InputIt, class OutputIt1, class OutputIt2, class UnaryPredicate> std::pair<OutputIt1, OutputIt2> partition_copy(InputIt first, InputIt last, OutputIt1 d_first_true, OutputIt2 d_first_false, UnaryPredicate p) { while (first != last) { if (p(*first)) { *d_first_true = *first; ++d_first_true; } else { *d_first_false = *first; ++d_first_false; } ++first; } return std::pair<OutputIt1, OutputIt2>(d_first_true, d_first_false); } |
[编辑] 示例
#include <iostream> #include <algorithm> #include <utility> int main() { int arr [10] = {1,2,3,4,5,6,7,8,9,10}; int true_arr [5] = {0}; int false_arr [5] = {0}; std::partition_copy(std::begin(arr), std::end(arr), std::begin(true_arr),std::begin(false_arr), [] (int i) {return i > 5;}); std::cout << "true_arr: "; for (auto it = std::begin(true_arr); it != std::end(true_arr); ++it) { std::cout << *it << ' '; } std::cout << '\n'; std::cout << "false_arr: "; for (auto it = std::begin(false_arr); it != std::end(false_arr); ++it) { std::cout << *it << ' '; } std::cout << '\n'; return 0; }
输出:
true_arr: 6 7 8 9 10 false_arr: 1 2 3 4 5
[编辑] 另请参阅
把一个区间的元素分为两组 (函数模板) | |
将元素分为两组,同时保留其相对顺序 (函数模板) |