delete elements in vector

D

david wolf

I want to delete all even numbers in a vector, I am not sure if there's
any better way to do it. Following program is how I did it.
Look at the part of code beginning from
comments: //delete all even numbers.

My questions is actullay I have to put pos++ in the body of the
loop(also in if, else, statement). Can I somehow put it in
for(...;...;...).

Or can I use index instead of iterator in order to delete elements from
vector?

I just wish to know what's the most elegant way to do it.

Thanks



#include <iostream>
#include <vector>

main(){

int ar[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

vector<int> tmpint;

//populate vector
for(int i=0; i<10; i++){
tmpint.push_back(ar);
}

//delete all even numbers
vector<int>::iterator pos;
for(pos=tmpint.begin(); pos != tmpint.end(); ){
if (*pos % 2 == 0)
tmpint.erase(pos);
else
pos++;
}

//display all elements in the vector
for(pos=tmpint.begin(); pos != tmpint.end();pos++ ){
cout<<*pos<<endl;
}
}
 
V

Victor Bazarov

david said:
I want to delete all even numbers in a vector, I am not sure if there's
any better way to do it. Following program is how I did it.
Look at the part of code beginning from
comments: //delete all even numbers.

My questions is actullay I have to put pos++ in the body of the
loop(also in if, else, statement). Can I somehow put it in
for(...;...;...).

Or can I use index instead of iterator in order to delete elements from
vector?

I just wish to know what's the most elegant way to do it.

Elegance is in the eye of the beholder. You can try doing it in one line
(well, not exactly, you'll need to define your predicate), but whether
it's "elegant" or not is not my place to say.
Thanks



#include <iostream>
#include <vector>

main(){

int main(){
int ar[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

vector<int> tmpint;

std::vector said:
//populate vector
for(int i=0; i<10; i++){
tmpint.push_back(ar);
}


Did you know you can initialise 'tmpint' from 'ar' in the same statement
where you declared it?

std::vector<int> tmpint(ar, ar + 10);

?? No need for the loop at all...
//delete all even numbers
vector<int>::iterator pos;

std::vector said:
for(pos=tmpint.begin(); pos != tmpint.end(); ){
if (*pos % 2 == 0)
tmpint.erase(pos);
else
pos++;
}

//display all elements in the vector
for(pos=tmpint.begin(); pos != tmpint.end();pos++ ){
cout<<*pos<<endl;

std::cout << *pos << std::endl;

If you use 'std::remove_if' and a custom predicate, you can do

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

// your custom predicate
template<class T> struct is_even {
bool operator()(T t) const {
return t % 2 == 0;
}
};

int main(){
int ar[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
vector<int> tmpint(ar, ar+10);

// this is essentially your one-liner.
tmpint.erase(
remove_if(tmpint.begin(),
tmpint.end(),
is_even<int>()),
tmpint.end());

//display all elements in the vector
for (size_t i = 0; i < tmpint.size(); i++)
cout << tmpint << ' ';
cout << endl;
}

V
 
M

Mark Stijnman

david said:
I want to delete all even numbers in a vector, I am not sure if there's
any better way to do it. Following program is how I did it.
Look at the part of code beginning from
comments: //delete all even numbers.

My questions is actullay I have to put pos++ in the body of the
loop(also in if, else, statement). Can I somehow put it in
for(...;...;...).

You probably could, but I don't think it's worth it.
Or can I use index instead of iterator in order to delete elements from
vector?

I just wish to know what's the most elegant way to do it.

Thanks



#include <iostream>
#include <vector>

main(){

int ar[10]={1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

vector<int> tmpint;

//populate vector
for(int i=0; i<10; i++){
tmpint.push_back(ar);
}

//delete all even numbers
vector<int>::iterator pos;
for(pos=tmpint.begin(); pos != tmpint.end(); ){
if (*pos % 2 == 0)
tmpint.erase(pos);
else
pos++;
}

//display all elements in the vector
for(pos=tmpint.begin(); pos != tmpint.end();pos++ ){
cout<<*pos<<endl;
}
}


I'm not convinced this piece of code even does what it is supposed to
do - AFAIK the iterator pos is not guaranteed to be valid after calling
erase. I think you should use

pos = tmpint.erase(pos);

instead. This will make pos point to the next, non-erased element after
pos, or end() if there aren't any.

As far as elegance goes, the method erase works in linear time on
vectors: to erase an element, it simply moves all elements behind it
left one place (filing up the erased spot). This will create a lot of
unnecessary copying if you call erase lots of time in succession on the
same vector. So this is not very elegant I'm afraid. It is of course
possible to examine/erase/move every element in the vector only once,
if you think about it for a bit. It is possible that the remove_if that
Victor Bazarov suggested is implemented like that (I haven't checked,
but it seems likely) so I second his suggestion that you give that a
try.

grtz Mark
 
D

david wolf

I do not agree with grtz Mark. I tried my program, it works fine. I
means it is not necessary to use
pos = tmpint.erase(pos);

simply doing
tmpint.erase(pos);

will work. Any one giving me some opnions?
 
V

Victor Bazarov

david said:
I do not agree with grtz Mark. I tried my program, it works fine. I
means it is not necessary to use
pos = tmpint.erase(pos);

simply doing
tmpint.erase(pos);

will work. Any one giving me some opnions?

Mark is right. Once you erase the 'pos' iterator, the next loop tries
to use it by dereferencing it. You simply get awfully lucky that it
stays the same on your system. 'pos' is invalidated by the call to
erase(), and dereferencing it invokes undefined behaviour. You ought
to use pos = tmpint.erase(pos);

V
 
D

david wolf

I mean on Linux (red hat) system, I am using gcc. Whenever I did
tmpint.erase(pos);

pos automatically points to the element after the deleted one.

Can you tell me a case/os that this will not work?

------------------------------- Victor said -------------
'pos' is invalidated by the call to
erase(), and dereferencing it invokes undefined behaviour
 
V

Victor Bazarov

david said:
I mean on Linux (red hat) system, I am using gcc. Whenever I did
tmpint.erase(pos);

pos automatically points to the element after the deleted one.

Can you tell me a case/os that this will not work?

It will not work if the container you're using is not 'vector'.
------------------------------- Victor said -------------
'pos' is invalidated by the call to
erase(), and dereferencing it invokes undefined behaviour

I take it back. It is not invalidated, dereferencing it may not cause
undefined behaviour. Undefined behaviour only occurs if 'pos' was the
last element in the vector. However, for other containers it is true,
and if the element you're erasing is the last one, it is true. So, in
a _general_case_ it is true, then.

V
 
D

Default User

david said:
I do not agree with grtz Mark. I tried my program, it works fine. I
means it is not necessary to use
pos = tmpint.erase(pos);


Please quote enough of the previous message to provide context for your
replies. To do so using the Google interface, click on "show options"
and use the Reply shown in the expanded header.




Brian
 
D

david wolf

Victor said:
It will not work if the container you're using is not 'vector'.


I take it back. It is not invalidated, dereferencing it may not cause
undefined behaviour. Undefined behaviour only occurs if 'pos' was the
last element in the vector. However, for other containers it is true,
and if the element you're erasing is the last one, it is true. So, in
a _general_case_ it is true, then.

V


I tried and found out that, even 'pos' was the last element in the
vector. If
we invoke:

tmpint.erase(pos);

pos is still defined after this erase method. After execute erase(),
pos will be point to the end of the container which means
pos=tmpint.end(). So at least for vector, we do not have use pos =
tmpint.erase(pos), I think.

Can you help confirm this?

David
 
V

Victor Bazarov

david said:
[...]
I tried and found out that, even 'pos' was the last element in the
vector. If
we invoke:

tmpint.erase(pos);

pos is still defined after this erase method.

And how *did* you find that out?
After execute erase(),
pos will be point to the end of the container which means
pos=tmpint.end(). So at least for vector, we do not have use pos =
tmpint.erase(pos), I think.

Can you help confirm this?

No. If 'pos == tmpint.end()' yields 'true', then you cannot use 'pos'
to do anything except compare its value to the result of calling 'end()'
or anything else you usually do with the result of calling 'end()'. The
Standard gives no guarantees that "one-past-the-end" iterator would be
dereferenceable. It therefore is not necessarily valid. There are no
special provisions in the Standard regarding 'vector' and its iterators
in that respect.

V
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,470
Messages
2,571,809
Members
48,797
Latest member
PeterSimpson
Top