erase std::vector element by value c++ code example
Example 1: c++ vector erase by value
#include <algorithm>
#include <iostream>
#include <vector>
void Print(const std::vector<int>& vec) {
for (const auto& i : vec) {
std::cout << i << ' ';
}
std::cout << '\n';
}
int main() {
std::vector<int> v = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
Print(v);
v.erase(std::remove(v.begin(), v.end(), 5), v.end());
Print(v);
}
Example 2: remove element by value vector c++
#include<bits/stdc++.h>
using namespace std;
int main(){
vector<int> v;
v.push_back(20);
v.push_back(10);
v.push_back(30);
v.push_back(20);
v.push_back(40);
v.push_back(20);
v.push_back(10);
vector<int>::iterator new_end;
new_end = remove(v.begin(), v.end(), 20);
for(int i=0;i<v.size(); i++){
cout << v[i] << " ";
}
return 0;
}
C++Copy