摘要: 1. pairtemplate struct pair { typedef T1 first_type; typedef T2 second_type; T1 first; T2 second; pair() : first(T1()), second(T2()) {} pair(const T1 & a, const T2 & b) : firs... 阅读全文
posted @ 2015-04-21 23:17 阿木木在发呆 阅读(242) 评论(0) 推荐(0) 编辑
摘要: set集合用于存放不重复的元素template , class Alloc = alloc>class set{......private:typedef rb_tree, key_compare, Alloc> rep_type;rep_type t; //set内部的实现实际上是一个红黑树..... 阅读全文
posted @ 2015-04-21 22:38 阿木木在发呆 阅读(495) 评论(0) 推荐(0) 编辑