C++ 提高教程 函数模板-函数模板案列
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 函数模板-函数模板案列相关的知识,希望对你有一定的参考价值。
# include<iostream>
using namespace std;
//实现通用的对数组数据进行排序
//规则从大到小
//算法 选择
//测试 char 数组、int 数组
template<typename T>
void myswap(T& a, T& b)
{
T temp = a;
a = b;
b = temp;
}
//排序算法
template<typename T>
void mySort( T arr[], int len)
{
for (int i = 0; i < len; i++)
{
int max = i;
for (int j = i + 1; j < len; j++)
{
if (arr[max] < arr[j])
{
max = j;
}
}
if (max != i)
{
//交换max和i元素
myswap(arr[i], arr[max]);
}
}
}
template<typename T>
void printArray(T arr[], int len)
{
for (int i = 0; i < len; i++)
{
cout << " " << arr[i];
}
cout <&
以上是关于C++ 提高教程 函数模板-函数模板案列的主要内容,如果未能解决你的问题,请参考以下文章