STL Algorithms Modifying Sequence Operations C++ Tutorial

#include 
#include 
#include 
#include 
using namespace std;
template 
bool IsOdd (const elementType& number){
    return ((number % 2) == 1);
}
int main (){
    list  l;
    for (int nCount = 0; nCount < 10; ++ nCount)
        l.push_back (nCount);
    list ::const_iterator li;
    for ( li = l.begin (); li != l.end (); ++ li )
        cout << *li << ' ';
    vector  v (l.size () * 2);
    vector ::iterator iLastPos;
    iLastPos = copy ( l.begin (), l.end (), v.begin () );
    vector ::iterator i;
    i = remove_if (v.begin (), v.end (), IsOdd );    // The predicate
    v.erase (i , v.end ());
    vector ::iterator vi;
    for ( vi = v.begin (); vi != v.end (); ++ vi )
        cout << *vi << ' ';
    return 0;
}