I want to erase all elements with value greater 2 and less 5 here is the code :
vector<int> myvector{3, 3, 3, 3, 3, 3, 3, 1, 2, 3, 4, 5 , 2, 3, 4, 9};
vector<int>::iterator it;
it = myvector.begin();
for(int i = 0; i < myvector.size(); i++)
{
if(myvector[i] > 2 && myvector[i] < 5)
{
myvector.erase(it+i);
}
}
for(int i = 0; i < myvector.size(); i++)
{
cout << ' ' << myvector[i];
}
output: 3 3 3 1 2 4 5 2 4 9
Where is the problem.
Use the approach with applying the standard algorithm std::remove_if. For example
The output of this code snippet is
Using this for loop
is incorrect. For example if you have a vector with 2 elements and in the first iteration the element with the index 0 was deleted when i will be incremented and equal to 1. So as now i equal to 1 is not less then the value returned by
size()
then the second element will not be deleted.Apart from this such an approach with sequential erasing elements in a vector also is inefficient.