C++数据结构(四)——C++模板

函数模板

#include<iostream>
#include<vector>
#include<string>

using namespace std;

template <typename Comparable>
const Comparable & findMax(const vector<Comparable> & a)
{
	int maxIndex = 0;
	for(int i=1; i < a.size(); i++){
		if(a[maxIndex] < a[i]){
			maxIndex = i;
		}
	}
	return a[maxIndex];
}
int main(){
	vector<int> v1;
	vector<double> v2;
	vector<string> v3;
	
	v1.push_back(3);
	v1.push_back(1);
	v1.push_back(7);
	v1.push_back(2);
	
	v2.push_back(2.3);
	v2.push_back(5.1);
	v2.push_back(1.7);
	v2.push_back(0.2);
	
	v3.push_back("hello");
	v3.push_back(",");
	v3.push_back("world");
	v3.push_back("!");
	cout<<findMax(v1)<<endl;
	cout<<findMax(v2)<<endl;
	cout<<findMax(v3)<<endl;
	return 0;
}

在这里插入图片描述

函数模板应用

#include<iostream>
#include<vector>
#include<string>

using namespace std;

template <typename Comparable>
const Comparable & findMax(const vector<Comparable> & a)
{
	int maxIndex = 0;
	for(int i=1; i < a.size(); i++){
		if(a[maxIndex] < a[i]){
			maxIndex = i;
		}
	}
	return a[maxIndex];
}

class Employee
{
	public:
		void setValue(const string &n, double s)
		{
			name = n, salary = s;
		}
		const string & getname() const
		{
			return name;
		}
		void print(ostream & out) const
		{
			out<<name<<"("<<salary<<")";
		}
		bool operator < (const Employee & rhs) const
		{
			return salary < rhs.salary;
		}
	private:
		string name;
		double salary;
};
ostream & operator << (ostream & out, const Employee & rhs)
{
	rhs.print(out);
	return out;
}

int main(){
	vector<Employee> v(3);
	
	v[0].setValue("G", 400);
	v[1].setValue("B", 200);
	v[2].setValue("D", 130);

	cout<<findMax(v)<<endl;
	return 0;
}

在这里插入图片描述

类模板

#include<iostream>

using namespace std;

template <typename Object>
class MemoryCell
{
	public:
		explicit MemoryCell(const Object & initialValue = Object())
		:storedValue(initialValue){}
		const Object & read() const
		{
			return storedValue;
		}
		void write(const Object & x)
		{
			storedValue = x;
		}
	private:
		Object storedValue;
}; 

int main(){
	MemoryCell<int> m1;
	MemoryCell<string> m2("hello");
	m1.write(37);
	m2.write(m2.read()+"world");
	cout<<m1.read()<<endl<<m2.read()<<endl;
	
	return 0;
} 

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

艾醒(AiXing-w)

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值