find函数

本文介绍了C++标准库中的find函数,用于在容器中查找特定元素。通过示例展示了如何使用find查找整数向量中的元素,并解释了当查找自定义类型如person时,如何通过重载==操作符实现正确比较。同时,代码演示了在vector中查找自定义person对象的过程。
摘要由CSDN通过智能技术生成

1.功能:查找指定元素,找到返回指定元素的迭代器,找不到返回结束迭代器end();

2.函数原型:

  • find(iterator beg, iterator end , value)
  • beg  开始迭代器
  • end  结束迭代器
  • value  查找的元素
    #include<iostream>
    #include<vector>
    #include<string>
    #include<algorithm>
    using namespace std;
    
    
    void test1()
    {
    	vector<int> v;
    	for (int i = 0; i < 10; i++)
    	{
    		v.push_back(i);
    	}
    
    	vector<int>::iterator pos = find(v.begin(), v.end(), 5);
    	if (pos == v.end())
    	{
    		cout << "未找到!" << endl;
    	}
    	else
    	{
    		cout << "找到:" << *pos << endl;
    	}
    }
    
    class person
    {
    public:
    	person(string name, int age)
    	{
    		this->myname = name;
    		this->myage = age;
    	}
    
    	//重载 ==  让底层find知道如何对比person数据类型
    	bool operator==(const person &p)
    	{
    		if (this->myname == p.myname && this->myage == p.myage)
    			return true;
    		else
    			return false;
    	}
    	string  myname;
    	int myage;
    };
    
    //查找自定义数据类型
    void test2()
    {
    	vector<person> v;
    	person p1("aaa", 10);
    	person p2("bbb", 20);
    	person p3("ccc", 30);
    	person p4("ddd", 40);
    
    	v.push_back(p1);
    	v.push_back(p2);
    	v.push_back(p3);
    	v.push_back(p4);
    
    	vector<person>::iterator pos = find(v.begin(), v.end(), p2);
    		if (pos == v.end())
    		{
    			cout << "未找到!" << endl;
    		}
    		else
    		{
    			cout << "找到,姓名:" << (*pos).myname <<"  年龄:"<<pos->myage<< endl;
    		}
    }
    int main()
    {
    	test1();
    	test2();
    	return 0;
    }

     

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值