Sort Containers with std::sort()
Learn to sort containers with std::sort.
We'll cover the following...
The problem of how to efficiently sort comparable elements is essentially solved. For most applications, there's no reason to re-invent this wheel. The STL provides an excellent sorting solution via the std::sort()
algorithm. While the standard does not specify a sorting algorithm, it does specify a worst-case complexity ofn
elements.
Just a ...