There is a sort() method for lists in STL. Which is absurd, because I would be more inclined to sort an array/vector. Why isn't sort() provided for vector? Is there some underlying philosophy behind the creation of the vector container or its usage, that sort is not provided for it?
|
As has already been said, the standard library provides a nonmember function template that can sort any range given a pair of random access iterators. It would be entirely redundant to have a member function to sort a vector. The following would have the same meaning:
One of the first principles of the STL is that algorithms are not coupled to containers. How data is stored and how data is manipulated should be as loosely coupled as possible. Iterators are used as the interface between containers (which store data) and algorithms (which operate on the data). In this way, you can write an algorithm once and it can operate on containers of various types, and if you write a new container, the existing generic algorithms can be used to manipulate its contents. The reason that In general, there are two cases in which a container should implement an algorithm:
|
|||||||||||||||||
|
|
A vector-specific sort would provide no advantage over |
|||
|
|
You can easily sort a
UPDATE: (answer to the comment): Well, they have certainly provided it by default. The difference is that it's not a member function for |
|||||||
|
|
There is also edit - why does
|
|||||
|
|
Answering the question of "Why?" A sorting algorithm for std::vector is the same as sorting a native array and is the same (probably) as sorting a custom vector class. The STL was designed to separate containers and algorithms, and to have an efficient mechanism for applying an algorithm to data that has the right characteristics. This lets you write a container that might have specific characteristics, and to get the algorithms free. Only where there is some special characteristic of the data that means the standard algorithm is unsuitable is a custom implementation supplied, as in the case of std::list. |
|||
|
|

listhave asort()method? Why can you not just usestd::sort()like withvectors and arrays?" Also not sure why you think it's "absurd" to want to sort a list. – j_random_hacker Dec 3 '10 at 7:51