码迷,mamicode.com
首页 >  
搜索关键字:stl算法    ( 183个结果
STL algorithm算法make_heap和sort_heap(32)
make_heap原型: std::make_heap default (1) template void make_heap (RandomAccessIterator first, RandomAccessIterator last); custom (2) template void make_heap (Rando...
分类:其他好文   时间:2014-09-17 18:43:42    阅读次数:241
STL algorithm算法lexicographical_compare(30)
lexicographical_compare原型: std::lexicographical_compare default (1) template bool lexicographical_compare (InputIterator1 first1, InputIterator1 last1, ...
分类:其他好文   时间:2014-09-17 12:13:52    阅读次数:226
STL algorithm算法lower_bound和upper_bound(31)
lower_bound原型: function template std::lower_bound default (1) template ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last, ...
分类:其他好文   时间:2014-09-17 12:09:32    阅读次数:235
STL algorithm算法is_permutation(27)
is_permutation原型: std::is_permutation equality (1) template bool is_permutation (ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2...
分类:其他好文   时间:2014-09-17 10:19:02    阅读次数:433
STL algorithm算法is_sorted和is_sorted_until(28)
is_sort的原型: ::is_sorted default (1) template bool is_sorted (ForwardIterator first, ForwardIterator last); custom (2) template bool is_sorted (ForwardIterator fir...
分类:其他好文   时间:2014-09-17 10:17:32    阅读次数:220
STL algorithm算法is_partitioned(26)
is_partitioned原型:...
分类:其他好文   时间:2014-09-16 23:49:01    阅读次数:471
STL algorithm算法is_heap和is_heap_until(25)
is_heap原型: std::is_heap default (1) template bool is_heap (RandomAccessIterator first, RandomAccessIterator last); custom (2) template bool is_heap (RandomAccessI...
分类:其他好文   时间:2014-09-16 17:31:24    阅读次数:202
STL algorithm算法inplace_merge(24)
inplace_merge原型: std::inplace_merge default (1) template void inplace_merge (BidirectionalIterator first, BidirectionalIterator middle, BidirectionalIterato...
分类:其他好文   时间:2014-09-16 16:02:20    阅读次数:170
STL algorithm算法generate和generate_n(22)
今后的stl算法部分就不贴cpluplus的原文了,简要的介绍为主。 generate原型: std::generate template void generate (ForwardIterator first, ForwardIterator last, Generator gen); 该函数是使用gen函数产生的值填充范围内元素的值。 其行为类似如...
分类:其他好文   时间:2014-09-13 15:58:05    阅读次数:210
STL算法find,find_if,find_if_not,sort,fill,for_each,count,adjacent_find,random_shuffle,prev_permutation
1find查找 #include #include #include #include #include #include   using namespace std;   void main() {     vectorint> myv;     myv.push_bac...
分类:其他好文   时间:2014-08-31 22:57:32    阅读次数:286
183条   上一页 1 ... 14 15 16 17 18 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!