2015年3月27日
摘要: 1 #include 2 #include 3 using namespace std; 4 5 struct cmp1 //小到大 6 { 7 bool operator () (int &a, int &b) 8 { 9 return a>b;10 ... 阅读全文
posted @ 2015-03-27 09:36 咋是你呀~ 阅读(117) 评论(0) 推荐(0) 编辑