STL
海洋
这个作者很懒,什么都没留下…
展开
-
详细解说 STL 排序(Sort)
详细解说 STL 排序(Sort) 0 前言: STL,为什么你必须掌握1 STL提供的Sort 算法 1.1 所有sort算法介绍1.2 sort 中的比较函数1.3 sort 的稳定性1.4 全排序1.5 局部排序1.6 nth_element 指定元素排序1.7 partition 和stable_partition 2 Sort 和容器3 选择合适的排序函数4 小结5 参考文转载 2012-07-24 10:17:01 · 454 阅读 · 0 评论 -
STL 查找算法
Section I 正确区分不同的查找算法count,find,binary_search,lower_bound,upper_bound,equal_range 本文是对Effective STL第45条的一个总结,阐述了各种查找算法的异同以及使用他们的时机。 首先可供查找的算法大致有count,find,binary_search,lower_bound,upper_bound,e转载 2012-07-24 15:31:44 · 299 阅读 · 0 评论