I'm in a situation where I cannot use a vector because I use &element[x] then add more items so the pointer is invalidated. The problem is that std::list does not seem to overload the operator [] nor provide an at() method. Therefore the only way I see I could simulate at() is by using an iterator. Is there however a better way to do this?
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 should reconsider your design probably. Trying to emulate That's why these operation are not provided by |
|||||
|
For non-random-access iterators (like those of |
|||
|
|
|
No std::list is a linked list. It is not possible to access one element directly. The only possibility it to iterate over the elements from the beginning. |
|||
|
|
my_iterator = my_vector.insert(my_iterator, VALUE);; vectors offer good performance in general case, even when elements are to be shifted. – Benoit Sep 12 '11 at 13:52