multiset基础学习,可以有重复类型的多重集合容器
摘要:
#include #include using namespace std;struct Student{ char *name; int year; char *addr;};void find_test(){ multiset ms; ms.insert(10); ms.insert(11)... 阅读全文
posted @ 2014-03-06 20:13 吴一达 阅读(175) 评论(0) 推荐(0)