I couldn't find any definitive answer to this question.
I suppose most implementation use merge sort that is stable but, is the stability a requirement or a side effect?
|
|
|
C++ Standard ISO/IEC 14882:2003 says:
|
|||||||||
|
|
Yes, std::list<>::sort is guaranteed to be stable. |
||||
|
|
|
According to "The C++ Programming Language" (Stroustrup p470), yes, stl::list<>::sort is stable. |
|||
|
|