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
118 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 ?
6
votes
4answers
121 views
C++ equivalent of Python difference_update?
s1 and s2 are sets (Python set or C++ std::set)
To add the elements of s2 to s1 (set union), you can do
Python: s1.update(s2)
C++: s1.insert(s2.begin(), s2.end());
To remove the elements of s2 ...
5
votes
1answer
322 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 ...
4
votes
3answers
237 views
limit the size of a std::set
I have a short question about the std::set container. Right now I am feeding my set using the pushback function. Of corse the set becomes larger and larger for every push_back.
I am only intrested in ...
0
votes
2answers
185 views
Using a Constant Character Pointer in a std::set Container: Memory Consumption
I'm currently working on a device with very little memory (4MB) and I have a component of my program that requires an std::set. I would like to migrate this set from using std::string to using const ...
0
votes
4answers
507 views
Access Violation Reading Location on std::set::erase
I have recently caught the following crash in my application:
m_players[0].erase(plr); -- CRASHES HERE
m_players[1].erase(plr);
m_players is declared as:
set<PlayerPointer> m_players[2];
...
-1
votes
0answers
51 views
Fast allocator for std::set and map [closed]
I've been looking for fast allocator for set and map (both STL and Boost versions), because dealing with large sets of data (10000+ elements in set/map) makes allocating and deallocating memory by ...