c语言sort函数参数

您所在的位置:网站首页 c语言中sort函数用法 c语言sort函数参数

c语言sort函数参数

2022-05-29 15:37| 来源: 网络整理| 查看: 265

第一个参数 一般为 排序的起始点

vector.begin()(起点) 或者其他位置

第二个参数 一般为 排序的终止点

vector.end() (终点) 或者其他位置

第三个参数是排序函数

对于一些复杂的结构 比如pair 我们需要定义排序规则

// sort algorithm example

#include // std::cout

#include // std::sort

#include // std::vector

using namespace std;

bool myfunction (int i,int j) { return (i

bool myfunction2 (int i,int j) { return (i>j); }//降序排列

bool myfunction3 (pair i,pair j) { return (i.second>j.second); } // 按照pair的第二个元素 降序排列

int main() {

vector > tmp;

tmp.push_back(make_pair(1,2));

tmp.push_back(make_pair(5,4));

tmp.push_back(make_pair(6,3));

tmp.push_back(make_pair(8,5));

tmp.push_back(make_pair(9,1));

sort(tmp.begin(), tmp.end(), myfunction3);

for (auto i : tmp) {

cout



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3