源码剖析目录

Posted LaoJiu_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了源码剖析目录相关的知识,希望对你有一定的参考价值。

说明:以下剖析,纯属蛋疼兴趣


#include<algorithm>

非修改性序列操作

all_ofTest 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






堆:

is_heap

is_heap_until

push_heap

pop_heap

make_heap




#include<cstdlib>

itoa






#include<cstring>






#include<list>

sort




















以上是关于源码剖析目录的主要内容,如果未能解决你的问题,请参考以下文章

06 drf源码剖析之权限

07 drf源码剖析之节流

05 drf源码剖析之认证

Thread类源码剖析

jdk源码剖析

教你如何剖析源码