摘要: #include //包含了set类#include #include using namespace std;struct Info{ string name; float score; bool operator(const Info &a)const// greater模版需要写上这个操作符重载 { return score>a.score;//保证了按score降序排列 } bool operator==(const Info &d)const//find会用==操作符重载进行比较 { return score==d.score; }};int main(... 阅读全文
posted @ 2013-02-09 12:59 在河之博 阅读(1211) 评论(0) 推荐(0)