First page Back Continue Last page Graphics
vector member functions cont.
push_back(elem)
- Appends a copy of elem at the end.
pop_back( )
- Removes the last element (does not return it)
erase(pos)
- Removes the element at iterator position pos and returns the position of the next element.
erase(beg, end)
- Removes all elements of the range [beg,end) and returns the position of the next element.