C++STL中find()和find_if()的区别

最近处于C++刚入门的状态,记录辨别一下find()find_if()
共同点:1.查找元素 2.返回迭代器的位置
find()用于查找指定的元素,而find_if()用于搜寻使条件成立的第一个元素。代码解释如下:

#include<iostream>
#include<cstdlib>   //本人使用的编译器为devC++,头文件加上<cstdlib>  
#include<algorithm>    
#include<vector>
using namespace std;
int chazhao(int val)
{
    return val>4;
}
void test01()
{
    vector<int>v;
    for(int i=0;i<10;i++)
    {
        v.push_back(i);
    }
    vector<int>::iterator it0=find(v.begin(),v.end(),4);  //用 find 查找指定的元素 4
    if(it0!=v.end()) 
    {
        cout<<"find找到元素 "<<*it0<<endl;
    }
    else
    {
        cout<<"find找不到元素"<<endl;
    }
    vector<int>::iterator it1=find_if(v.begin(),v.end(),chazhao ); //用 find_if 查找大于4的第一个的元素 
    if(it1!=v.end()) 
    {
        cout<<"find_if找到元素 "<<*it1<<endl;
    }
    else
    {
        cout<<"find_if找不到元素"<<endl;
    }
}
int main()
{
    test01();
    system("pause");
    return 0;
}


结果:


总结来说:find只要找到指定的元素(不可以输出大于4或小于4的数),而find_if可以要按要求找到符合条件(大于4)的元素;
以上属于个人总结,如有不对,感谢指出

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值