gpt4 book ai didi

c++ - 将满足某些条件的所有元素从一个容器移动到另一个容器,即我正在寻找某种 "move_if"

转载 作者:IT老高 更新时间:2023-10-28 22:16:33 29 4
gpt4 key购买 nike

给定

std::vector<T> first = /* some given data */, second;

我想移动所有满足某些条件cond(e)的元素efirstsecond,即类似

move_if(std::make_move_iterator(first.begin()),
std::make_move_iterator(first.end()),
std::back_inserter(second), [&](T const& e)
{
return cond(e);
});

我无法使用 算法库 建立这一点。那么,我该怎么做呢?

最佳答案

如果被移动的元素可以留在它们在 first 中的位置,那么只需使用 copy_ifmove_iterator

std::copy_if(std::make_move_iterator(first.begin()),
std::make_move_iterator(first.end()),
std::back_inserter(second), cond);

如果应该从 first 中删除移出的元素,我会这样做

// partition: all elements that should not be moved come before 
// (note that the lambda negates cond) all elements that should be moved.
// stable_partition maintains relative order in each group
auto p = std::stable_partition(first.begin(), first.end(),
[&](const auto& x) { return !cond(x); });
// range insert with move
second.insert(second.end(), std::make_move_iterator(p),
std::make_move_iterator(first.end()));
// erase the moved-from elements.
first.erase(p, first.end());

partition_copy 带有 move_iterator,然后是赋值:

std::vector<T> new_first;
std::partition_copy(std::make_move_iterator(first.begin()),
std::make_move_iterator(first.end()),
std::back_inserter(second), std::back_inserter(new_first), cond);
first = std::move(new_first);

关于c++ - 将满足某些条件的所有元素从一个容器移动到另一个容器,即我正在寻找某种 "move_if",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32155810/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com