Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Which sorting algorithm is used by STL’s list::sort()?

Which sorting algorithm can be used for sorting std::list ?

share|improve this question

marked as duplicate by Nick Dandoulakis, GManNickG, sbi, Luc Touraille, SilentGhost Jul 22 '10 at 11:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

It's implementation defined. However, it must follow these restrictions (§23.2.​2.4):

Stable: the relative order of the equivalent elements is preserved.
Complexity: Approximately NlogN comparisons, where N == size().

So it's a stable sort with O(nlog n).

share|improve this answer
Thanks GMan. Which algorithm except merge sort can be used? – Davit Siradeghyan Jul 22 '10 at 7:22
3  
NEVER sleeps! :P :D – C-x C-t Jul 22 '10 at 7:23
1  
@Davit: I think Quicksort can be written to be stable, though if I remember correctly it loses some performance that way. (And even though its worse-case is O(N^2), its average case fits the requirements.) You're correct though, I think every implementation I have used uses mergesort. (And for non-stable sorts, Introsort.) – GManNickG Jul 22 '10 at 7:25
Looking at Wikipedia's stable sorts, I was a bit shocked to discover that Quicksort and Shellsort aren't among them. That really doesn't leave a lot. – Carl Smotricz Jul 22 '10 at 7:25
1  
If my memory serves me right Merge sort is usually used for stable sorts & Intro sort otherwise (to ease up on Quick sort's O(n^2) worst case)... – Eugen Constantin Dinca Jul 22 '10 at 7:29

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