vote up 2 vote down star

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?

flag

3 Answers

vote up 9 vote down check

C++ Standard ISO/IEC 14882:2003 says:

23.2.2.4/31

Notes: Stable: the relative order of the equivalent elements is preserved. If an exception is thrown the order of the elements in the list is indeterminate.

link|flag
+1. SGI and Stroustrup are both correct but not the "definitive answer". ISO 14882 is. – MSalters Mar 4 at 11:30
+1 - welcome to stackoverflow :) – Dominic Rodger Mar 4 at 11:34
Only great answers but I admit this is the best. ;) – Edouard A. Mar 4 at 15:01
vote up 7 vote down

According to "The C++ Programming Language" (Stroustrup p470), yes, stl::list<>::sort is stable.

link|flag
Quote from source: +1 – dalle Mar 4 at 10:29
vote up 11 vote down

Yes, std::list<>::sort is guaranteed to be stable.

See http://www.sgi.com/tech/stl/List.html

link|flag
Exactly what I was looking for, thanks! – Edouard A. Mar 4 at 10:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.