博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sort函数(C++)
阅读量:6843 次
发布时间:2019-06-26

本文共 555 字,大约阅读时间需要 1 分钟。

原创


C++中内置了sor函数供排序,函数原型为:

#include
  //所属头文件sort(begin,end,cmp); //其中cmp参数可以省略,省略后默认升序排序

如果要进行降序排序,需要另外定义cmp函数:

bool cmp(int a,int b){    //降序排序    return a>b;}

另外还可以对string和结构体进行排序:

#include
#include
#include
using namespace std;bool cmp(int a,int b){ return a>b;}struct stru{ int x; int y;};bool cmpp(stru a,stru b){ if(a.x==b.x){ //x坐标同,y坐标降序排序 return a.y>b.y; } return a.x

22:37:40

2018-09-12

转载于:https://www.cnblogs.com/chiweiming/p/9637867.html

你可能感兴趣的文章