Is there any way to get all keys from an STL hash_map? Or I have to use something like set or hash_set to record them before insertion?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
Building on Igor Oks' answer:
|
|||
|
|
|
You may want to iterate through the hash_map, and extract the first element from the pair pointed by current iterator value (the first element of the pair is in fact a key).
This is a possible function to extract keys from a hash_map to a vector:
|
||||
|
|
sortthe result – David Rodríguez - dribeas Jan 15 '12 at 17:04