gpt4 book ai didi

c++ - 将不可比较的对象添加到集合中

转载 作者:太空狗 更新时间:2023-10-29 23:46:36 25 4
gpt4 key购买 nike

我有一个名为 Point 的类(在外部库中,我无法修改代码)用于表示 3d 空间中的一个点:

int x = 0; int y = 0; int z = 0;
Point my_point p(x,y,z);

它使 == 过载和 !=运算符,但不是 <>那些。我需要以一种有效的方式存储它们(没有双重元素,没有重复)。我以为我的数据结构是set ,但如果我尝试使用,我会收到此错误:

error: no match for ‘operator<’ in ‘__x < __y’

一些建议?

最佳答案

编写一个比较运算符,并用它实例化set:

struct ComparePoints
{
bool operator()( Point const& lhs, Point const& rhs ) const
{
if ( lhs.x != rhs.x ) {
return lhs.x < rhs.x;
} else if ( lhs.y != rhs.y ) {
return lhs.y < rhs.y;
} else {
return lhs.z < rhs.z;
}
}
};

std::set <Point, ComparePoints> mySet;

关于c++ - 将不可比较的对象添加到集合中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10206381/

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