一、问题描述:
对于输入的每一批数,按从小到大排序后输出。
一行输入为一批数,第一个输入为数据类型(1表示整数,2表示字符型数,3表示有一位小数的浮点数,4表示字符串,0表示输入结束),第二个输入为该批数的数量size(0<size<=10),接下来为size个指定类型的数据。
输出将从小到大顺序输出数据。
函数接口定义:sort函数将接受size个数据,将它们从小到大排序后存在a指向的一段连续空间中。
template <class T> void sort(T *a, int size);
裁判测试程序样例:
#include <iostream> #include <string> using namespace std; /* 请在这里填写答案 */ template <class T> void display(T* a, int size){ for(int i=0; i<size-1; i++) cout<<a[i]<<' '; cout<<a[size-1]<<endl; } int main() { const int SIZE=10; int a[SIZE]; char b[SIZE]; double c[SIZE]; string d[SIZE]; int ty, size; cin>>ty; while(ty>0){ cin>>size; switch(ty){ case 1:sort(a,size); display(a,size); break; case 2:sort(b,size); display(b,size); break; case 3:sort(c,size); display(c,size); break; case 4:sort(d,size); display(d,size); break; } cin>>ty; } return 0; }
二、代码实现:
1 template <class T> 2 void sort(T *a, int size) 3 { 4 for(int i=0;i<size;i++) 5 { 6 cin>>a[i]; 7 } 8 for(int i=0;i<size-1;i++) 9 { 10 for(int j=i+1;j<size;j++) 11 { 12 if(a[i]>a[j]) 13 { 14 T p; 15 p=a[i]; 16 a[i]=a[j]; 17 a[j]=p; 18 } 19 } 20 } 21 }
标签:sort,case,ty,int,数组,排序,display,模板,size From: https://www.cnblogs.com/tljx-cen/p/17372445.html