So every know and then I want to store a bunch of key-value objects, but where the value object itself (and references to it) knows its key. I also want to efficently lookup these objects given only the key.
class SomeObject
{
private:
//String or integer. int seem cheap enough to duplicate with std::map, but strings seem pretty expensive when there may be thousands of objects in existence.
//Reference/Pointer to key is fine
const SomeOtherObject key;
...other stuff...
public:
...methods, some of which use the key in some way...
};
- std::map
- Seems to require that the storage is an std::pair, such that the value cant access the key. If the value contains the key, it needs to be duplicated.
- Does not actually enforce that the key inside the value does not get changed in some way
- std::set
- Looks like a really good solution, using a custom compare method to provide uniqueness by key, until you realise it made your entire value const, not just the key field.
- std::vector (or other array/list like solutions)
- Can use linear search, or if the items are kept sorted binary search. However I suspect this not not optimal in performance terms, and an extra layer of some kind is needed to really implement the desired behaviour with it.
mapmakes the most sense, but instead of duplicating the key in the value, just include a reference to the key in the value. – Jerry Coffin Dec 11 '12 at 20:33std::vectordoes come with some performance concerns, especially if you are doing a lot of inserting/removing from the container. If you are not doing that though, it comes with a lot of benefits. Mainly, reduced memory footprint and better cache locality. – Chad Dec 11 '12 at 20:38map, but call thepairyour "value"? It satisfies all of your requirements. – Beta Dec 11 '12 at 20:43