重载运算符调试模板

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

#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;
}

 

重载运算符调试模板

上一篇:网络基础知识


下一篇:P4082 - Push a Box 题解