按照第一个元素,然后在C ++中的对的第二个元素对对的向量排序? [英] Sort a vector of pairs by first element then by second element of the pair in C++?

查看:104
本文介绍了按照第一个元素,然后在C ++中的对的第二个元素对对的向量排序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有一个向量< pair< int,int> > 数据类型,接受的方式是通过对的第一个元素进行排序,然后如果第一个元素相等,第二个?例如可能是(1,10),(3,3),(7,13),(7,16),(8,1),(8,2),(15,2)

If I have a vector<pair<int,int> > datatype, what is the accepted way to sort it by the first element of the pair and then by second if the firsts are equal? For instance maybe (1,10), (3,3), (7,13), (7,16), (8,1), (8,2), (15,2) etc.

推荐答案

pair s默认比较第一个元素,然后第二个。所以,如果你不关心保持顺序时,第一个元素比较相等,那么你可以使用 std :: sort

pairs by default compare by first element, then second. So, if you don't care about preserving the order when the first elements compare equal, then you can just use std::sort:

std::sort(v.begin(), v.end());

这篇关于按照第一个元素,然后在C ++中的对的第二个元素对对的向量排序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆