首页 > 代码库 > 查找--基本库函数

查找--基本库函数

有关于查找基本的库函数有find(),find_if,binary_search(),lower_bound(),upper_bound(),equal_range()

另外bind1st(greater<int>,15),bind2nd(greater<int>,15),greater(15,x),count_if(),斐波那契查找,等基本函数的实现。

下面一一作出列举说明:

首先是find()函数;

 

查找--基本库函数