Algorithm模板中的Min/Max/sort函数

min/max函数既可以针对基本类型,也可以针对自定义类型。下面分这两种情况讲解一下:

一、基本类型

1、范围:即int / double / float / char / string / char * (字符串)

2、用法示例:

#include <algorithm>
#include <iostream>
using namespace std;  
int main()
{
    int a,b;
    cin >> a >> b;
    int c = min(a,b);
}  

二、自定义类型

(1)自定义类型需要先重载关系运算符

(2)示例:实现学生结构体的比较

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <string>
using namespace std;

struct Student{
    public:
    int numberID;
    char name[20];
    int score;
    Student(){}
    Student(int id_, char *name_, int score_){
        numberID = id_;
        strcpy(name, name_);
        score = score_;
    }
    void in()
    {
        scanf("%d %s %d", &numberID, name, &score);
    }
    void out()
    {
        printf("%d %s %d\n", numberID, name, score);
    }
};

bool min_cmp(Student S1, Student S2)
{
    if(S1.score < S2.score) return true;
    else if(S1.score > S2.score) return false;
    else if(S1.score = S2.score)
    {
        if(S1.numberID < S2.numberID) return true;
        else return false;
    }
}

int main(int argc, const char * argv[]) 
{    
   Student s1,s2;
   s1.in();
   s2.in();
   Student s3 = min(s1,s2,min_cmp);
   s3.out();
    return 0;
}

sort函数也是 Algorithm 中的常用函数, 默认为从小到大排序,第三个位置传参数改变排序方式。

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <string>
using namespace std;

struct Student{
    int numberID;
    char name[20];
    int score;
    Student(){}
    Student(int id_, char *name_, int score_){
        numberID = id_;
        strcpy(name, name_);
        score = score_;
    }
    void in()
    {
        scanf("%d %s %d", &numberID, name, &score);
    }
    void out()
    {
        printf("%d %s %d\n", numberID, name, score);
    }
    bool operator < (const Student &S)const
    {
        if(this->score > S.score) return true;
        else if(this->score < S.score) return false;
        else if(this->score == S.score)
        {
            if(this->numberID < S.numberID) return true;
            else return false;
        }
    }
};

bool max_cmp(Student S1, Student S2)
{
    if(S1<S2) return true;
    else return false;
}

int main(int argc, const char * argv[]) 
{    
    int n;
    cin >> n;
   Student stu[n];
   for(int i=0;i<n;i++)
    {
        stu[i].in();
    }
   sort(stu,stu+n,max_cmp);
    for(int i=0;i<n;i++)
    {
        stu[i].out();
    }  
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值