CCF 201912 2 回收站选址
题目 C++代码: #include #include using namespace std; class point{ public: point operator()(int a,int b){ point apt; apt.x=a; apt.y=b; return apt; } bool operator<(const point &apt) const{ if(x!=apt.x) return x<apt.x; else ret
下载地址
用户评论