
在C++中使用std::sort函数时,如果需要按照自定义规则排序,可以通过传入比较函数、函数对象(仿函数)或Lambda表达式来实现。默认情况下,sort按升序排列基本类型,但对复杂数据类型(如结构体、类对象)或特殊排序需求,必须自定义比较逻辑。
最常见的方式是定义一个返回bool类型的函数,接受两个参数,当第一个参数应排在第二个之前时返回true。
对自定义类型排序时,比较函数需根据具体字段判断顺序。
```cpp struct Student { std::string name; int score; };// 按分数从高到低,分数相同时按名字字典序 bool cmpStudent(const Student& a, const Student& b) { if (a.score != b.score) { return a.score > b.score; } return a.name < b.name; }
std::vector
<H3>3. 使用Lambda表达式(推荐现代C++写法)</H3>
<p>Lambda更简洁,适合简单逻辑,可直接在<code>sort</code>调用中定义。</p>
```cpp
std::vector<int> nums = {3, 1, 4, 1, 5};
std::sort(nums.begin(), nums.end(), [](int a, int b) {
return a < b; <font color="green">// 升序</font>
});对结构体:
立即学习“C++免费学习笔记(深入)”;
```cpp std::sort(students.begin(), students.end(), [](const Student& a, const Student& b) { if (a.score == b.score) { return a.name b.score; }); ```适用于需要状态或复用的场景。
```cpp struct CmpByLength { bool operator()(const std::string& a, const std::string& b) { return a.length() std::vector<:string>words = {"hi", "hello", "c++"}; std::sort(words.begin(), words.end(), CmpByLength());<strong>注意事项:</strong> <ul> <li>比较函数必须满足<strong>严格弱序</strong>:即<code>cmp(a,a)</code>必须为false,且若<code>cmp(a,b)</code>为true,则<code>cmp(b,a)</code>不能为true。</li> <li>传递给<code>sort</code>的比较逻辑应保证可预测、无副作用。</li> <li>使用引用传参(尤其是结构体)避免拷贝开销。</li> </ul> 基本上就这些。根据实际需求选择合适方式,Lambda最常用也最直观。
以上就是c++++ sort函数怎么自定义比较函数_c++排序自定义规则实现的详细内容,更多请关注php中文网其它相关文章!
c++怎么学习?c++怎么入门?c++在哪学?c++怎么学才快?不用担心,这里为大家提供了c++速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号