首页 > 其他 > 详细

重载运算符调试模板

时间:2021-08-08 22:58:22      阅读:33      评论:0      收藏:0      [点我收藏+]

这是个废物文章,请不要继续看下去

#include<bits/stdc++.h>
using namespace std;
struct node
{
    int x,y;
    bool operator < (const node &a) const
    {
        if(a.x!=x)return a.x>x;
        return y<a.y;
    }
}p[1000100]; 
int main()
{
    for(int i=1;i<=10;i++)
    {
        cin>>p[i].x>>p[i].y;
    }
    sort(p+1,p+1+10);
    for(int i=1;i<=10;i++)
    {
        cout<<p[i].x<< <<p[i].y<<endl;
    }
    return 0;
}

 

重载运算符调试模板

原文:https://www.cnblogs.com/simpleton/p/15115756.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!