Tagged Questions
9
votes
6answers
6k views
Is the C++ STL std::set thread-safe?
I've a question about the thread safety of std::set.
As far as I know I can iterate over a set and add/erase members and that doesn't invalidate the iterators.
But consider following scenario:
...
7
votes
1answer
119 views
For how long the iterator returned by std::set.find() lives?
I need to keep track of std::set element by saving the iterator returned by set.find().
My questions is does insertion and removing other elements invalidates the obtained iterator? From a simple ...
7
votes
4answers
570 views
How do I find the largest int in a std::set<int>?
I have a std::set, what's the proper way to find the largest int in this set ?
5
votes
1answer
325 views
std::inserter for std::set
If there is any difference between it1 and it2?
std::set<sometype> s;
auto it1 = std::inserter(s, s.begin());
auto it2 = std::inserter(s, s.end());
4
votes
2answers
57 views
how to check whether a set has element(s) in certain range in C++
I need to check if a std::set contains element/elements in a range. For example, if the set is a set<int> {1, 2, 4, 7, 8}, and given an int interval [3, 5] (inclusive with both endpoints), I ...