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++?
| ||||
|
feedback
|
|
Most implementations of The only thing the standard requires is that | ||||
|
feedback
|
|
C++ Standard ISO/IEC 14882:2003
There is no information about method but complexity is always | |||
|
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. | |||||||||||||
feedback
|
sort()is the same: something that runs atO(N log N). Sometimes that manpage will tell you what your system is actually using. – dmckee Dec 3 '09 at 17:49