源码剖析目录
Posted LaoJiu_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了源码剖析目录相关的知识,希望对你有一定的参考价值。
说明:以下剖析,纯属蛋疼兴趣
#include<algorithm>
非修改性序列操作
all_of:Test condition on all elements in range
any_of :Test if any element in range fulfills condition
none_of :Test if no elements fulfill condition
for_each :Apply function to range
find :Find value in range
find_if :Find element in range
find_if_not :Find element in range (negative condition)
find_end :Find last subsequence in range
fnd_first_of :Find element from set in range
adjacent_find :Find equal adjacent elements in range
count :Count appearances of value in range
count_if :Return number of elements in range satisfying condition
mismatch :Return first position where two ranges differ
equal :Test whether the elements in two ranges are equal
is_permutation : Test whether range is permutation of another
search :Search range for subsequence
堆:
#include<cstdlib>
#include<cstring>
#include<list>
以上是关于源码剖析目录的主要内容,如果未能解决你的问题,请参考以下文章