本文介绍了对两个值排序STL向量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何根据两个不同的比较标准对STL向量进行排序?默认的sort()函数只接受一个单独的排序器对象。
How do I sort an STL vector based on two different comparison criterias? The default sort() function only takes a single sorter object.
推荐答案
举一个例子,说明如何根据第一个字段和第二个字段对结构进行第一个和第二个字段
的排序。
You need to combine the two criteria into one.Heres an example of how you'd sort a struct with a first and second fieldbased on the first field, then the second field.
#include <algorithm>
struct MyEntry {
int first;
int second;
};
bool compare_entry( const MyEntry & e1, const MyEntry & e2) {
if( e1.first != e2.first)
return (e1.first < e2.first);
return (e1.second < e2.second);
}
int main() {
std::vector<MyEntry> vec = get_some_entries();
std::sort( vec.begin(), vec.end(), compare_entry );
}
注意: compare_entry
更新为使用的代码。
NOTE: implementation of compare_entry
updated to use code from Nawaz.
这篇关于对两个值排序STL向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!