cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Hash_map implementation
Hash_map implementation
Jul 3, 2018 at 4:14am UTC
skyfall009
(8)
I need a hash_map API in which a unique number will be the key, FOUR values, a boost::gregorian_date,and three double values will be maped under the unique number. How can i do that?
Thanks in advance
Jul 3, 2018 at 5:29am UTC
mbozzi
(3932)
The stdlib's hash map container is named
std::unordered_map
. Map the UID to a structure containing the values.
Last edited on
Jul 3, 2018 at 5:29am UTC
Topic archived. No new replies allowed.