4.关联容器重载排序运算符,invalid comparator

工程中需要将自定义结构作为map的key,于是在自定义结构中重载了默认升序运算符“<”,错误代码如下,问题出在代码中标注的那一行,当第二次向map中插入值时,map内部自动按升序排序,到注释那行崩溃。

原因:升序排列,默认严格模式strict weak ordering,元素相等时必须返回false。

#include <iostream>
#include <algorithm> 
#include <map>
using namespace std;
struct MyStruct
{
    int a;
    int b;
    bool operator<(const MyStruct& right) const {
        if (a < right.a)
        {
            return true;
        }
        else if (a == right.a)
        {
            if (b <= right.b)  //正确写法:if (b < right.b)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else
        {
            return false;
        }
    }
};
int main() {
    map<MyStruct, string> myMap;
    MyStruct myStruct1{11,22};
    MyStruct myStruct2{ 22,33 };
    myMap.insert(pair<MyStruct, string>(myStruct1, "left"));
    myMap.insert(pair<MyStruct, string>(myStruct2, "right"));
    for (auto i = myMap.begin(); i != myMap.end(); i++)
    {
        cout << i->first.a << endl;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值