35

正如标题所说,我想删除/合并满足特定条件的向量中的对象。我的意思是我知道如何从例如值为 99 的向量中删除整数。

Scott Meyers 的删除成语:

vector<int> v;
v.erase(remove(v.begin(), v.end(), 99), v.end());

但是假设如果有一个包含延迟成员变量的对象向量。现在我想消除延迟仅小于特定阈值的所有对象,并希望将它们组合/合并到一个对象。

该过程的结果应该是一个对象向量,其中所有延迟的差异应该至少是指定的阈值。

4

4 回答 4

50

std::remove_if来救援!

99 将被替换为UnaryPredicate过滤您的延迟,我将使用 lambda 函数。

这是一个例子:

v.erase(std::remove_if(
    v.begin(), v.end(),
    [](const int& x) { 
        return x > 10; // put your condition here
    }), v.end());
于 2013-06-24T08:18:10.523 回答
7

C++20std::erase_if正是为了这个问题的目标而引入的。

它简化了 的擦除删除习惯用法,并为std::vector其他标准容器实现,包括std::string.

鉴于当前接受的答案中的示例:

v.erase(std::remove_if(
    v.begin(), v.end(),
    [](const int& x) { 
        return x > 10; // put your condition here
    }), v.end());

您现在可以使相同的逻辑更具可读性:

std::erase_if( v, [](const int& x){return x > 10;} );
//   container ^  ^ predicate
于 2021-08-13T20:15:46.147 回答
4

一个老问题,但很受欢迎,所以我要为此添加另一个选项。

remove_if函数保留序列的顺序。这可能非常重要。但是,如果您的程序不关心顺序,这也可能完全是浪费时间。

为了保持顺序,remove_if需要将元素向下移动来填充被移除的元素。

让我介绍一下partition。它不是移动元素来填充间隙,而是将元素从末端移动到间隙中。这不会保留顺序,但可以更快,尤其是在大型数组中。

这是一个示例程序:

#include <algorithm>
#include <chrono>
#include <iostream>
#include <iterator>
#include <memory>
#include <string>
#include <vector>

using namespace std;

struct Event {
  chrono::nanoseconds delay;
  string name;

  friend ostream &operator<<(ostream &os, const Event &e) {
    return os << "{ \"delay\": " << e.delay.count() << ", \"name\": \""
              << e.name << "\" }";
  }
};

template <typename T>
ostream &operator<<(ostream &os, const vector<T> &container) {
  bool comma = false;
  os << "[ ";
  for (const auto &x : container) {
    if (comma)
      os << ", ";
    os << x;
    comma = true;
  }
  os << " ]";
  return os;
}

int main() {
  vector<Event> iv = {
      {0ms, "e1"},  {10ms, "e2"}, {11ms, "e3"}, {0ms, "e4"},
      {12ms, "e5"}, {8ms, "e6"},  {13ms, "e7"},
  };

  iv.erase(partition(begin(iv), end(iv),
                     [](const auto &x) { return x.delay > 0ns; }),
           end(iv));
  cout << iv << '\n';
  return 0;
}

我使用 GCC 在 Linux 上编译它,如下所示:
g++ -Wall -W -pedantic -g -O3 -std=c++17 partition-test.cpp -o partition-test

并运行它:
./partition-test [ { "delay": 13000000, "name": "e7" }, { "delay": 10000000, "name": "e2" }, { "delay": 11000000, "name": "e3" }, { "delay": 8000000, "name": "e6" }, { "delay": 12000000, "name": "e5" } ]

让我还介绍一个有趣的命令行工具,名为jqJSON Query:

./partition-test | jq 
[
  {
    "delay": 13000000,
    "name": "e7"
  },
  {
    "delay": 10000000,
    "name": "e2"
  },
  {
    "delay": 11000000,
    "name": "e3"
  },
  {
    "delay": 8000000,
    "name": "e6"
  },
  {
    "delay": 12000000,
    "name": "e5"
  }
]

这也是一个非常棒的 JSON 格式化程序。使其易于阅读。

现在您可以看到“e7”和“e6”以延迟 == 0 填充了已擦除的 Event 对象。并且数组不再按顺序排列。

于 2019-12-14T20:18:06.287 回答
2

使用谓词函数(C++11 中的惯用方式):

v.erase(remove_if(
            v.begin(), v.end(), bind(greater<int>(), _1, 99)),
        v.end());
于 2013-06-24T08:37:30.727 回答