Why will std::sort crash if the comparison function is not as operator lt;?(如果比较函数不是运算符 lt;,为什么 std::sort 会崩溃?)
问题描述
以下程序使用VC++ 2012编译.
The following program is compiled with VC++ 2012.
#include <algorithm>
struct A
{
A()
: a()
{}
bool operator <(const A& other) const
{
return a <= other.a;
}
int a;
};
int main()
{
A coll[8];
std::sort(&coll[0], &coll[8]); // Crash!!!
}
如果我将 return a <= other.a;
更改为 return a <other.a;
然后程序按预期运行,无一例外.
If I change return a <= other.a;
to return a < other.a;
then the program runs as expected with no exception.
为什么?
推荐答案
std::sort
需要一个满足严格弱排序规则的排序器,具体说明这里
std::sort
requires a sorter which satisfies the strict weak ordering rule, which is explained
here
所以,你的比较器说 a <b
当a == b
不遵循严格弱排序规则时,算法可能会崩溃,因为它会进入无限循环.
So, your comparer says that a < b
when a == b
which doesn't follow the strict weak ordering rule, it is possible that the algorithm will crash because it'll enter in an infinite loop.
这篇关于如果比较函数不是运算符 <,为什么 std::sort 会崩溃?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果比较函数不是运算符 <,为什么 std::s
基础教程推荐
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01