前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >c++模板篇02函数模板案例----排序函数

c++模板篇02函数模板案例----排序函数

作者头像
大忽悠爱学习
发布2021-03-02 16:54:42
4190
发布2021-03-02 16:54:42
举报
文章被收录于专栏:c++与qt学习

函数模板案例----排序函数

任务:用选择排序对不同类型的数组进行排序

代码语言:javascript
复制
#include<iostream>
using namespace std;
//交换函数
template<class t>
void myswap(t& a, t& b)
{
	t temp = a;
	a = b;
	b = temp;
}
//排序函数
template<class T>
void test(T &array,int len)
{
	for (int i = 0; i < len; i++)
	{
		int max = i;
		for (int j = i + 1; j < len; j++)
		{
			if (array[max] < array[j])
			{
				max = j;
			}
		}
		if (max != i)
		{
			swap(array[max], array[i]);
		}
	}
}
//打印数组模板
template<class a>
void printarr(a &arr,int len)
{
	for (int i = 0; i < len; i++)
	{
		cout << arr[i] << " ";
	}
}
int main()
{
	int arr[] = { 2,4,7,5,8,6,10 };
	int len = sizeof(arr) / sizeof(arr[0]);
	test(arr, len);
	printarr(arr, len);
	system("pause");
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021/02/05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 函数模板案例----排序函数
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档