发布时间:2015-04-04 18:45:34
Effective STL 21 比较函数等值情况下返回falseset s; //用......【阅读全文】
发布时间:2015-04-10 13:42:23
查找一 、在未排序区间只能选择 count find count_if find_if 效率是线性的 相等性判断count 统计个数set s;Widget w;...size_t n = s.count(w);find 是否有这样的值,有在哪里?list::iterator it = find(lw.begin(),lw.end(),w);if(it != lw.end()){}else...二、排序区间.........【阅读全文】
发布时间:2015-04-09 13:34:26
bind1st bind2nd 的由来for_each 源码来分析 传入的_Functiontemplate inline _LIBCPP_INLINE_VISIBILITY_Functionfor_each(_InputIterator __first, _InputIterator __last, _Function __f){ for (; __first != __last; ++__first)&nb.........【阅读全文】
发布时间:2015-04-08 11:25:12
STL六大组件简介1、容器(Containers):各种数据结构,如Vector,List,Deque,Set,Map,用来存放数据,STL容器是一种Class Template,就体积而言,这一部分很像冰山载海面的比率。2、算法(Algorithms):各种常用算法如Sort,Search,Copy,Erase,从实现的角度来看,STL算法是一种Function Templates。3、迭代器.........【阅读全文】