How does STL algorithm work independent of Iterator type?
|
|
Really, they just work. They use some pretty basic properties of templates, sometimes called static polymorphism. If you're familiar with the term, it is essentially a form of ducktyping. (If it looks like a duck, and it quacks like a duck, it must be a duck) The trick is simple. Here's a very simple example:
The The STL algorithms work similarly. Here's a simple implementation of
This code will compile whenever the template types live up to the requirements placed on them;
|
||||||||
|
|
|
|
||||||||
|
|
|
Every STL algorithm is a template function which takes iterator type as its template parameter. |
||
|
|
|
|
Any STL algorithm is generated automatically by compiler for each iterator type you use it with. It is called C++ templates or static polymorphism. |
||
|
|
|
|
STL algorithm are template functions, which means they can be called with any type. When calling the function with a specific type, the compiler will try to compile an instance of the function for this specific type and report any compilation error (missing methods, type check errors, etc.) For STL algorithms, as long as the type used behaves like an iterator (supports ++, dereferencing), it will work. That's why those algorithms works with native pointers too, because they support the same type of operations than iterators (that is how they were designed in the first place). |
||
|
|
|
|
Not all STL container/iterator algorithms have this independence. The ones that do are call Generic Algorithms, but these are usually just called STL algorithms. With iterators only you can:
Some non-generic algorithms can be broken up into 2 stages, a STL Generic part and a container dependent part. So in order to destroy all values that are greater than 7 in a vector we can do a remove_if ( the generic part which only sorts the elements) followed by a erase ( the non-generic part that destroys the value). |
||
|
|
