I have a container C of some elements. In my algorithm, these elements need to be split into two sub-groups C1 and C2, where they will be ordered. Now, in order to avoid storing the same data twice, these two subgroups can either be
- std::sets of pointers pointing to the elements in the container C, or
- std::sets of iterators pointing to the elements in the container C.
I know that it would work well with iterators when following the Invalidation rules, however I will only be using C1 and C2 sets to dereference the actual value and to move the pointer/iterator from C1 to C2 or the other way around, nothing else.
Conceptually, it makes more sense to me to use pointers, but I'm not sure about two things:
Could the use of pointers actually save some memory for some std containers? (since iterators are generalization of pointers)
Do the Invalidation rules also apply for raw pointers for all std containers?
Aucun commentaire:
Enregistrer un commentaire