removing an element from the front of a vector code example
Example 1: c++ vector pop first element
std::vector<int> vect;
vect.erase(vect.begin());
Example 2: vector erase specific element
vector.erase( vector.begin() + 3 ); // Deleting the fourth element