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.

Possible Duplicate:
How to convert a sorted std::list of std::pair to a std::map
Is the STL map container optimized (balanced tree) while constructed?

Since a balanced binary search tree can be quickly (O(n)) constructed from a sorted list of elements, and STL map is (in practice even if not by definition) implemented as a tree, is there some way to insert all the elements of a sorted container into a map in O(n) instead of the O(nLogn) guaranteed by map::insert?

share|improve this question

marked as duplicate by larsmans, RedX, PlasmaHH, Andreas Brinck, interjay Jul 3 '12 at 10:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

Browse other questions tagged or ask your own question.