Sorting a list of a custom type(对自定义类型的列表进行排序)
问题描述
我想要一个 stl list 对象,其中每个对象包含两个 int.之后我想在第一个 int 的值之后使用 stl::sort 对列表进行排序.我如何告诉排序函数它应该在第一个 int 之后排序?
I want to have a stl list of objects where each object contains two int's.
Afterwards I want to sort the list with stl::sort after the value of the first int.
How do I tell the sort function that it's supposed to sort after the first int?
推荐答案
您可以指定自定义排序谓词.在 C++11 中,这最好用 lambda 来完成:
You can specify a custom sort predicate. In C++11 this is best done with a lambda:
typedef std::pair<int, int> ipair;
std::list<ipair> thelist;
thelist.sort([](const ipair & a, const ipair & b) { return a.first < b.first; });
在旧版本的 C++ 中,您必须编写适当的函数:
In older versions of C++ you have to write an appropriate function:
bool compFirst(const ipair & a, const ipair & b) { return a.first < b.first; }
thelist.sort(compFirst);
(相反,如果 ipair 你当然可以拥有自己的数据结构;只需相应地修改比较函数即可访问相关数据成员.)
(Instead if ipair you can of course have your own data structure; just modify the comparison function accordingly to access the relevant data member.)
最后,如果这有意义,您还可以为您的自定义类配备 operator<.这允许您在任何有序上下文中自由使用该类,但请务必了解其后果.
Finally, if this makes sense, you can also equip your custom class with an operator<. That allows you to use the class freely in any ordered context, but be sure to understand the consequences of that.
这篇关于对自定义类型的列表进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对自定义类型的列表进行排序
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
