0

我组织了两个结构向量。现在我需要删除从点中选择的内容。

#include <StdAfx.h>;
#include <iostream>;
#include <vector>;

using namespace std;
struct SPoint
{
    int id;
    int X;
    int Y;
};

vector<SPoint> points;
vector<SPoint> chosen;

void print_vect(const vector<SPoint> & vect)
{
    for (int i = 0; i < vect.size(); ++i)
    {
        cout << vect[i].id << " (" << vect[i].X << "," << vect[i].Y << ")"<<endl;               
    }           

    cout << endl;   
}

int _tmain(int argc, _TCHAR* argv[])
{
    SPoint temp;
    for (int i = 0; i < 10; i++)
    {
        temp.id = i;
        temp.X = i;
        temp.Y = i;
        points.push_back(temp);
    }

    for (int i = 5; i < 10; i++)
    {
        temp.id = i;
        temp.X = i;
        temp.Y = i;
        chosen.push_back(temp);
    }

    cout << "Points:" << endl;
    print_vect(points);
    cout << endl << endl;

    cout << "Chosen:" << endl;
    print_vect(chosen);

    system("pause");

    return 0;
}

似乎有 set_difference 功能。但是调试器告诉我我没有 '<' 方法。它讲述了这样的事情:

error C2784: 'bool std::operator <(const std::move_iterator<_RanIt> &,const std::move_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::move_iterator<_RanIt> &' from 'SPoint

我学习 C++ 中的过程编程。而且我不知道如何使用这种方法。在我看来,用“<”在这里做任何事情都是不可能的。

你能帮我做减法吗?

4

2 回答 2

1

是的,你猜对了。这std::set_difference需要 < 运算符才能起作用。它使用它来检查相等性为 (!a

The comparison to check for equivalence of values, uses either
operator< for the first version, or comp for the second, in order to
test this; The value of an element, a, is equivalent to another one,
b, when (!a<b && !b<a) or (!comp(a,b) && !comp(b,a)).

您需要做的就是添加如下功能

bool operator<(const SPoint& p1, const SPoint&p2){
    return p1.id <p2.id;
}

假设您的id领域是一个独特的领域。现在您可以使用std::set_difference功能。这将按字段比较两个SPoint变量。id

请注意,两个范围都需要排序才能正常工作。

于 2013-01-07T05:18:22.203 回答
1

你可以使用例如std::remove_if

std::remove_if(std::begin(points), std::end(points), [](const SPoint& point) {
    // Try to find the point in the `chosen` collection
    auto result = std::find_if(std::begin(chosen), std::end(chosen),
        [](const SPoint& p) {
            return (p.id == point.id)
        });

    // Return `true` if the point was found in `chosen`
    return (result != std::end(chosen));
});

请注意,我在上面的代码中使用了 C++11 lambda 函数

于 2013-01-07T05:59:38.530 回答