用到的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()

原文地址:https://www.cnblogs.com/zzSoftware/p/3790471.html