Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My question is, if i use uint32_t as data type for the key in std::map will it create a huge structure with indexes for each of the 2^32 combinations? Basically I want to generate a couple of 32-bit numbers each of which should be unique. I have the numbers but I am wondering what structure/technique to use to keep them in memory.

share|improve this question

2 Answers

up vote 3 down vote accepted

No, it will only create entries that you insert. If you only have a small number (you mention a couple) it might be faster to put them in a vector and do a linear search. If it's more than a small number a map will be faster of course.

share|improve this answer
If it's a small number, the performance of either is probably too small to worry about. – Joe Feb 1 '12 at 20:10
small as in 2-3000. – user949110 Feb 1 '12 at 20:17

No, a map only allocates space for actual keys used, not the entire key space. That would be bad otherwise.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.