c++学习之STL中排序算法sort

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值