Does std::sort change the relative order of equal elements?

c++, stl

Solution

`std::sort` is not guaranteed to be stable (the term you were trying to think of). As you'd guess, `std::stable_sort` is guaranteed to be stable. `std::stable_sort` also provides a guarantee on worst-case complexity, which `std::sort` does not. `std::sort` is typically faster on average though.

Problem

Does the standard guarantee that order of equal elements will not change (eh, forgot the term for that) by using std::sort or do I need to consider an alternative solution to achieve this goal?

Original source