I want my map to be searchable and I want to be capable to kick out from it elements that were inserted into it longest time ago (with api like map.remove(map.get_iterator_to_oldest_inserted_element()) ) like mix of queqe and map.. Is there any such container in STL or Boost?
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.
|
|
|
You can use boost::multi_index using the
|
|||
|
|
|
You can set up a boost multi-index container to do this. However, I have trouble understanding multi-index containers. I think it would be easier to roll my own class that has as members a |
|||
|
|
There is nothing like that in boost and stl, but you can make a hybrid one yourself:
|
|||
|
If you only ever want to find the oldest (or newest -- or more generally the least/greatest by some specified criteria, and be able to remove that element), then a |
|||
|
|
|
Boost::bimap can be used to create a unidirectionnal map using a list-based relation set.
|
||||
|
|