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
.目录 |
[编辑] 参数
first, last | - | |
d_first_true | - | |
d_first_false | - | |
p | - | 如果元素应该被放置在d_first_true 则返回 true 的一元谓词。谓词函数签名应等价于如下者: bool pred(const Type &a); 签名不必拥有 const & ,但函数必须不修改传递给它的对象。 |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-OutputIt1 必须满足 OutputIterator 的要求。
| ||
-OutputIt2 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
构建一个pair
d_first_true
范围和d_first_false
范围的结束迭代器迭代器.[编辑] 复杂度
究竟
distance(first, last)
应用程序的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
[编辑] 另请参阅
把一个区间的元素分为两组 (函数模板) | |
将元素分为两组,同时保留其相对顺序 (函数模板) |