Open main menu

CDOT Wiki β

Assignment 3i: Q & A

Q: Can you remove an element from the middle of the vector container? submitted by Imtiaz Latif
A: Yes, by using the Standard Library vector member function erase(), which has two implementations: one, iterator erase(iterator postion) will erase the element at the passed iterator position, while the other, iterator erase(iterator first, iterator last) will erase ALL the elements in the specified range.

More info here: Vector erase()

(Submitted by Kevin Kofler, Team 9)