摘要: multiset 多重集合容器 与 set 集合容器一样, multiset 多重容器也使用红黑树组织元素数据,只是 multiset 容器允许将重复的元素键值插入,而 set 容器则不允许。multiset 容器实现了 Sorted Associativate Container 、Simple Associative Container 和 Multiple Associative Container 概念的接口规范 在用 multiset 的时候,同样需要引用头文件 "#include <set>" 说得通俗点,multiset 是比 set 更复杂一点点 阅读全文
posted @ 2013-04-06 09:51 He_LiangLiang 阅读(7597) 评论(1) 推荐(2) 编辑