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
lexicographical_compare原型:
std::lexicographical_compare
default (1)
template
bool lexicographical_compare (InputIterator1 first1, InputIterator1 last1,
...
分类:
其他好文 时间:
2014-09-17 12:13:52
阅读次数:
226
lower_bound原型:
function template
std::lower_bound
default (1)
template
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last,
...
分类:
其他好文 时间:
2014-09-17 12:09:32
阅读次数:
235
is_permutation原型:
std::is_permutation
equality (1)
template
bool is_permutation (ForwardIterator1 first1, ForwardIterator1 last1,
ForwardIterator2 first2...
分类:
其他好文 时间:
2014-09-17 10:19:02
阅读次数:
433
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
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
inplace_merge原型:
std::inplace_merge
default (1)
template
void inplace_merge (BidirectionalIterator first, BidirectionalIterator middle,
BidirectionalIterato...
分类:
其他好文 时间:
2014-09-16 16:02:20
阅读次数:
170
今后的stl算法部分就不贴cpluplus的原文了,简要的介绍为主。
generate原型:
std::generate
template
void generate (ForwardIterator first, ForwardIterator last, Generator gen);
该函数是使用gen函数产生的值填充范围内元素的值。
其行为类似如...
分类:
其他好文 时间:
2014-09-13 15:58:05
阅读次数:
210
1find查找
#include
#include
#include
#include
#include
#include
using
namespace
std;
void
main()
{
vectorint>
myv;
myv.push_bac...
分类:
其他好文 时间:
2014-08-31 22:57:32
阅读次数:
286