Tagged Questions
5
votes
3answers
1k views
Efficiency of iterators in unordered_map (C++)
I can't seem to find any information on this, so I turn to stackoverflow. How efficient are the iterators of std::tr1::unordered_map in C++? Especially compared to, say, list iterators. Would it ...
1
vote
3answers
235 views
unordered_map iterator printing using cout
I'm trying to use an iterator to output an integer in a multilayered unordered_map and I'm having trouble with it, the error is below the code.
#include <boost/unordered_map.hpp>
#include ...
1
vote
5answers
563 views
C++ STL unordered_map iterator problem
class Demo {
struct FileData {
int size;
BYTE* buffer;
DWORD flags;
};
typedef std::tr1::unordered_map<std::wstring,FileData> FileMap;
FileMap m_fileMap;
...
1
vote
2answers
1k views
“error: assignment of read-only location” in unordered_map (C++)
I have an awkward hash table (specifically, an unordered_map) with int keys and vector< vector< int >> data. I periodically need to update elements in this two-dimensional vector of ints. ...
0
votes
0answers
103 views
how can I access an element of unordered_map sparsely [closed]
Possible Duplicate:
Synchronized unordered_map in C++
Because I want to access unordered_map concurrently using pthread.
for parallelization some loop, divide tbb::unordered_map by thread ...