Tagged Questions

3
votes
1answer
107 views

How to remove whitespace in a sentence using remove command in C++?

I get a file as input and I read the first line like this (quotes mark the begin and end, but are not in the file): " 1, 2.0, 3.0, 4.0 " When I use the ...
2
votes
4answers
107 views

Remove vector elements based on the index

I wanted to remove the elements of the vector based on the index, say all the even indexed elements. I have read about the erase remove idiom but can't see how to apply it. This is what I tried: ...
2
votes
1answer
176 views

Erase-remove idiom for deleting in a nested container? (deleting outer ones; C++ STL)

when i'm deleting from a non-nested container like a vector, i'm doing something like: struct is_to_remove { is_to_remove(dynamic_bitset<>& x) : x(x) {} const bool ...
1
vote
1answer
1k views

boost bind compilation error

class A { bool OutofRange(string& a, string& b, string c); void Get(vector <string>& str, string& a, string& b); } void A::Get(vector <string>& str, ...
1
vote
3answers
477 views

Erase-remove idiom: what happens when remove return past-the-end-iterator?

I got this question when I was reading erase-remove idiom (item 32) from Scott Meyers "Effective STL” book. vector<int> v; ... v.erase(remove(v.begin(), v.end(), 99), v.end()); remove ...