Go to My Blog
Go to Lin's Blog

用到的C++标准库

std::set<type>, 模板写的平衡二叉树的集合容器, method: insert, count, 

std:map<int, string>, 映射和多重映射基于某一类型Key的键集的存在, 提供对T类型的数据进行快速和高效的检索

std::vector<type>, 存放任意类型的动态数组的容器,

       .push_back(elen)尾部加入一个数据,

       .reserve(size),生命vector大小,未创建对象 

       .assign(size_type _Count, const Type& _Val)

       .size()

posted @ 2014-06-16 10:30  一ke小小草  阅读(261)  评论(0编辑  收藏  举报