Can anyone please tell me that which type of sorting technique (bubble, insertion, selection, quick, merge, count...) is implemented in the std::sort() function defined in the <algorithm> header file in C++?

link|improve this question

2  
Not your question, but it says here: cplusplus.com/reference/algorithm/sort that is nlogn on average and n^2 worst case (which goes the same for quicksort). – Björn Pollex Dec 3 '09 at 14:21
MSVC help also states that "The average of a sort complexity is O(N log N), where N = _Last – _First." – Vargas Dec 3 '09 at 14:24
BTW-- The answer for the c standard library function sort() is the same: something that runs at O(N log N). Sometimes that manpage will tell you what your system is actually using. – dmckee Dec 3 '09 at 17:49
feedback

3 Answers

up vote 12 down vote accepted

Most implementations of std::sort use quicksort, but some use a hybrid algorithm like introsort, which combines quicksort, heapsort and insertion sort.

The only thing the standard requires is that std::sort somehow sort the data according to the specified ordering with a complexity of approximately O(N log(N)); it is not guaranteed to be stable. Technically, introsort better meets the complexity requirement than quicksort, because quicksort has quadratic worst-case time.

link|improve this answer
feedback

C++ Standard ISO/IEC 14882:2003

25.3.1.1 sort

template<class RandomAccessIterator>
   void sort(RandomAccessIterator first, RandomAccessIterator last);
template<class RandomAccessIterator, class Compare>
   void sort(RandomAccessIterator first, RandomAccessIterator last,
          Compare comp);

1 Effects: Sorts the elements in the range [first, last).

2 Complexity: Approximately N log N (where N == last - first) comparisons on the average.

There is no information about method but complexity is always N log N.

link|improve this answer
feedback

Do you mean std::sort? If so it can be implemented any way they want. Its probably Quick sort but could be radix or something else. As long as it produces you a sorted list in at least O(n log n) the implementation is fine, afaik.

link|improve this answer
1  
There is also a complexity requirement, that the algorithm be O(n log n). This isn't much of a restriction, since almost all common sorts meet this requerment. Is does prevent the use of Bogo sort (en.wikipedia.org/wiki/Bogo_sort). – KeithB Dec 3 '09 at 14:23
Thanks, Post edited :) – Goz Dec 3 '09 at 14:31
I suppose radix sort isn't allowed, (even though it might be efficient for certain data types) since it does not have logarithmic complexity, as it isn't base on comparisons. – Charles Salvia Dec 3 '09 at 14:36
oh right? So if it did a O(1) that would be against the rules as well? (Ignoring the impossibility of such an algorithm). – Goz Dec 3 '09 at 14:55
@Goz No, an O(1) implementation would be fine. The requirements are an upper bound on the complexity. They are generally set to the most efficient know implementation, but don't preclude some new data structure or algorithm that is more efficient. – KeithB Dec 3 '09 at 16:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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