C++ 函数模板[Function Template]

本文介绍了C++中函数模板的应用,包括Sort和Show函数,展示了如何使用模板对整数、浮点数和双精度数进行排序并打印。通过实例演示了不同类型数据类型的排序操作。

C++ 函数模板 [Function Template]

#include <iostream>
using namespace std;


//书写函数模板
template<typename T> void Sort(T tArray[], int len);
template<typename T> void Show(T tArray[], int len);


template<typename T> 
void Sort(T tArray[], int len) {
	T temp;

	for (int i = 0; i < len - 1; i++) {
		for (int j = 0; j < len - i - 1; j++) {
			if (tArray[j] < tArray[j + 1]) {
				temp = tArray[j];
				tArray[j] = tArray[j + 1];
				tArray[j + 1] = temp;
			}
		}
	}
}


template<typename T>
void Show(T tArray[], int len) {
	for (int i = 0; i < len - 1; i++) {
		cout << tArray[i] << ", ";
	}
	cout << endl;
}

int main(){

	int iNums[] = { 56 ,47, 13, 89, 32 };
	float fNums[] = { 10.8f, 28.6f, 35.5f, 50.2f, 99.9f };
	double dNums[] = { 70.8, 65.9, 22.2, 84.3, 53.4 };

	cout << "排序前:" ;
	Show(iNums, sizeof(iNums) / sizeof(iNums[0]));
	Sort(iNums, sizeof(iNums) / sizeof(iNums[0]));
	cout << "排序后:" ;
	Show(iNums, sizeof(iNums) / sizeof(iNums[0]));

	cout << endl;

	cout << "排序前:";
	Show(fNums, sizeof(fNums) / sizeof(fNums[0]));
	Sort(fNums, sizeof(fNums) / sizeof(fNums[0]));
	cout << "排序后:";
	Show(fNums, sizeof(fNums) / sizeof(fNums[0]));

	cout << endl;

	cout << "排序前:";
	Show(dNums, sizeof(dNums) / sizeof(dNums[0]));
	Sort(iNums, sizeof(dNums) / sizeof(dNums[0]));
	cout << "排序后:";
	Show(dNums, sizeof(dNums) / sizeof(dNums[0]));
}

输出结果:在这里插入图片描述

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值