Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Remove Item from C++ STL Vector by Value



Erase function is used to remove an item from a C++ STL vector with a certain value.

Algorithm

Begin
Declare vector v and iterator it to the vector.
Initialize the vector.
Erase() function is used to remove item from end.
Print the remaining elements.
End.

Example Code

#include <iostream>
#include <vector>
using namespace std;
int main() {
   vector<int> v{ 6,7,8,9,10};
   vector<int>::iterator it;
   it = v.end();
   it--;
   v.erase(it);
   for (auto it = v.begin(); it != v.end(); ++it)
      cout << ' ' << *it;
   return 0;
}

Output

The current content of the vector is :
6 7 8 9 10
Please enter the element to be deleted -> 7
The current content of the vector is :
6 8 9 10
Updated on: 2019-07-30T22:30:25+05:30

658 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements