博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常用的STL查找算法
阅读量:5811 次
发布时间:2019-06-18

本文共 3720 字,大约阅读时间需要 12 分钟。


查找有三种,即点线面:

点就是查找目标为单个元素;

线就是查找目标为区间;
面就是查找目标为集合;

针对每个类别的查找,默认的比较函数是相等,为了满足更丰富的需求,算法也都提供了自定义比较函数的版本;


单个元素查找

find() 比较条件为相等的查找

find()从给定区间中查找单个元素,定义:

template

int myints[] = { 10, 20, 30, 40 };std::vector
myvector (myints,myints+4);it = find (myvector.begin(), myvector.end(), 30);if (it != myvector.end()) std::cout << "Element found in myvector: " << *it << '\n';else std::cout << "Element not found in myvector\n";

find_if() 自定义比较函数

std::find_if():从给定区间中找出满足比较函数的第一个元素;

示例,从myvector中查找能够被30整除的第一个元素:

bool cmpFunction (int i) {  return ((i%30)==0);}it = std::find_if (myvector.begin(), myvector.end(), cmpFunction);std::cout << "first:" <<  *it <

count() 统计元素出现次数

std::count():统计区间中某个元素出现的次数;

std:count_if():count()的自定义比较函数版本

search_n() 查询单个元素重复出现的位置

search_n(): find用来查询单个元素,search_n则用来查找区间中重复出现n次的元素;

示例:查询myvector中30连续出现2次的位置:

int myints[]={10,20,30,30,20,10,10,20};

std::vector myvector (myints,myints+8);
it = std::search_n (myvector.begin(), myvector.end(), 2, 30);
search_n() 支持自定义比较函数;

adjacent_find() 查询区间中重复元素出现的位置

adjacent_find() 查询区间中重复元素出现的位置,该算法支持自定义比较函数;

lower_bound() 有序区间中查询元素边界

lower_bound()用来在一个排序的区间中查找第一个不小于给定元素的值:

示例:查找容器v中不小于20的下界:

int myints[] = {
10,20,30,30,20,10,10,20};std::vector
v(myints,myints+8); // 10 20 30 30 20 10 10 20std::sort (v.begin(), v.end()); // 10 10 10 20 20 20 30 30std::vector
::iterator low,up;low=std::lower_bound (v.begin(), v.end(), 20); std::cout << "lower_bound at position " << (low- v.begin()) << '\n';

类似算法有upper_bound(),查找有序区间中第一个大于给定元素的值;

还有equal_range(),查找有序区间的上下边界;(一次返回lower_bound()和upper_bound());

binary_search() 有序区间的二分查找

binary_search() 用来在一个有序区间中使用二分法查找元素是否在这个区间中,注,这个算法的返回值为bool,

不是下标位置,其内部的算法逻辑和lower_bound()相似,行为表现为:

template 
bool binary_search (ForwardIterator first, ForwardIterator last, const T& val){ first = std::lower_bound(first,last,val); return (first!=last && !(val<*first));}

示例:从有序区间v中找3是否存在:

int myints[] = {
1,2,3,4,5,4,3,2,1};std::vector
v(myints,myints+9); // 1 2 3 4 5 4 3 2 1std::sort (v.begin(), v.end());if (std::binary_search (v.begin(), v.end(), 3)) std::cout << "found!\n"; else std::cout << "not found.\n";

min_element() 查找最小元素

min_element() 在给定区间中查找出最小值;

int myints[] = {3,7,2,5,6,4,9};

std::cout << “The smallest element is ” << *std::min_element(myints,myints+7) << ‘\n’;
类似算法有:max_element() 查找最大值;

区间查找 search()

search() 查找子区间首次出现的位置

find()用来查找单个元素,search()则用来查找一个子区间;

示例:从myvector中查找出现子区间[20,30]的位置:

int needle1[] = {
20,30}; it = std::search (myvector.begin(), myvector.end(), needle1, needle1+2); if (it!=myvector.end()) std::cout << "needle1 found at position " << (it-myvector.begin()) << '\n';

search支持自定义比较函数;

示例:查询给定区间中每个元素比目标区间小1的子区间;

bool cmpFunction (int i, int j) {  return (i-j==1);}int myints[] = {
1,2,3,4,5,1,2,3,4,5};std::vector
haystack (myints,myints+10);int needle2[] = {
1,2,3};// using predicate comparison:it = std::search (haystack.begin(), haystack.end(), needle2, needle2+3, cmpFunction);

find_end() 查找子区间最后一次出现的位置

search() 用来查找子区间第一次出现的位置,而find_end()用来查找子区间最后一次出现的位置:

find_end()支持自定义比较函数;

equal() 判断两个区间是否相等

equal()用来判断两个区间是否相等,该算法支持自定义比较函数;

mismatch() 查询两个区间首次出现不同的位置;

mismatch() 查询两个区间首先出现不同的位置,这个算法也支持自定义比较函数;

集合查找

find_first_of 查找集合中的任意一个元素

find_first_of()用来查找给定集合中的任意一个元素:

示例:从haystack中查找A,B,C出现的位置:

int mychars[] = {
'a','b','c','A','B','C'}; std::vector
haystack (mychars,mychars+6); int needle[] = {
'C','B','A'}; // using default comparison: it = find_first_of (haystack.begin(), haystack.end(), needle, needle+3);

转载于:https://www.cnblogs.com/Archger/p/8451671.html

你可能感兴趣的文章
ISA2006实战系列之二:实战ISA三种客户端部署方案(下)
查看>>
Linux后门入侵检测工具,附bash漏洞最终解决方法
查看>>
ASA5585-S20测试方案
查看>>
利用for循环打印实心棱形和空心棱形
查看>>
路由器发布服务器
查看>>
实现跨交换机VLAN间的通信
查看>>
oracle import & export 操作相关脚本
查看>>
LVS集群的体系结构,构建强壮的体系结构里负载均衡层、真实服务器层、后端共享存储层都是相辅相成...
查看>>
DBCC PAGE
查看>>
ant 实现批量打包android应用
查看>>
域环境下如何保护重要资料文件的安全(二)---IRM&RMS(上)
查看>>
Visual Studio 2010 Ultimate敏捷功能特性(上)
查看>>
HP ADG双循环阵列
查看>>
数据结构---二分查找算法
查看>>
OpenStack Juno系列之网络节点搭建
查看>>
提高 SharePoint 页面访问速度之清理SharePoint Configuration Cache
查看>>
how to design a good api and why it matters
查看>>
mysql dba系统学习(20)mysql存储引擎MyISAM
查看>>
QC ALM 11 邮箱设置
查看>>
Ubuntu 下建立WiFi热点的方法
查看>>