《Essential C++》系列笔记之第三章(泛型编程风格)之第二节(了解 Iterator (泛型指针))

在这里插入图片描述
代码实践

#include <iostream>
using namespace std;
#include <vector>
#include <list>
#include <string>

template<typename IteratorType, typename ElemType>
IteratorType Find(IteratorType begin, IteratorType end, ElemType elem)
{
	for (; begin != end; begin++)
	{
		if (*begin == elem)
		{
			return begin;
		}
	}
	return end;
}


int main()
{
	const int size = 5;
	int a[size] = { 1,2,3,4,5 };

	int *p = Find(a, a + size, 4);
	if (p != a + size)
	{
		cout << *p << endl;
	}

	vector<int> v1(a, a + size);
	vector<int>::iterator it = Find(v1.begin(), v1.end(), 3);
	if (it != v1.end())
	{
		cout << *it << endl;
	}

	list<int> L(a, a + size);
	list<int>::iterator iter = Find(L.begin(), L.end(), 3);
	if (iter != L.end())
	{
		cout << *iter << endl;
	}

	string str[] = { "Hello","S","T","L","!" };
	const vector<string> vstr(str, str + size);
	vector<string>::const_iterator c_it = Find(vstr.begin(), vstr.end(), "!");
	if (c_it != vstr.end())
	{
		cout << *c_it << endl;
	}


	system("pause");
	return 0;
}

今天还是20200307 膜拜这些设计者!👋👋👋

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值