sort(数组名+n1,数组名+n2,排序规则结构名())
排序结构名的定义方式:
struct 结构名{
bool operator()(const T & a1 ,const T & a2){
return 若a1大于a2,则返回true;
}
};
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
struct student{
char name[20];
long int id;
double gpa;
};
struct rule1{ //从小到大排列
bool operator()(const int & a1 ,const int & a2){
return a1 < a2;
}
};
struct rule2{ //按个位大小排列
bool operator()(const int & a1 , const int & a2){
return a1%10 < a2%10;
}
};
struct rule3{ //按姓名排序
bool operator()(const student & s1 , const student & s2){
if( stricmp(s1.name,s2.name) < 0){
return true;
}
return false;
}
};
void print(int a[] , int size){
for(int i=0; i < size -1 ; i++){
cout<< a[i] << " 、 ";
}
cout << a[size -1] ;
}
void printstudents(student s[],int size){
for(int i=0; i < size ; i++){
cout << "(" << s[i].name <<"、"<< s[i].id <<"、"<< s[i].gpa <<")";;
}
}
int main(){
int a[] = {12,6,4,8,0,3};
student students[] =
{{"xiaoming",201601,34.3},{"shadiao",201603,12.3},{"erhuo",201602,23.12}};
sort(a,a+6,rule1());
// 0 、 3 、 4 、 6 、 8 、 12
sort(a,a+6,rule2());
//0 、 12 、 3 、 4 、 6 、 8
sort(students,students+3,rule3());
//(erhuo、201602、23.12)(shadiao、201603、12.3)(xiaoming、201601、34.3)
printstudents(students,3);
return 0;
}