vote up 2 vote down star

I've been trying all night, and talk of maps, arrays, vectors and hash_maps have filled my head. im just confused now. i posted a previous question here: http://stackoverflow.com/questions/1687085/c-map-really-slow

problem was fixed but it seems map's are still not fast enough. i need to keep adding data. data is added ALOT during run time. i got it all working now, and if i add 1 piece of data per step (per frame in the game) it works fine. but once i do 2 at a time, i see performance drops. i looked into this hash stuff but couldn't find alot on it. just an fyi, the number of items stores will probably never exceed 2000~ or so. so i guess it is fairly small scaled..

what im trying to store, as someone else put it, is this: "object with id 101 has a value of 4 for setting 1" or information[101][1] = 4; except that i just keep getting more and more objects (differet id's, which is the key value) added into the system with different settings (2nd key). - i dont know what the size of the array will be (thats why i didnt use arrays). looked into vectors but that confused the hell out of me. >_<

right now i have:

//declared as a class member
map<double,  map<int, double> > objIdMap;

//// lower down the page, in some function
map<int, double> objSettingsMap;
objSettingsMap[0] = value;
objSettingsMap[1] = value;
objSettingsMap[2] = value;
objSettingsMap[3] = value;
objIdMap[id] = objSettingsMap;
return(1);

or maybe it isnt the map's? is it normal for maps to perform slow like this when they're used so heavily? (i havnt included it in the code above, but on every step of the game every object with an id in objIdMap is accessing it to retrieve their objSettingsMap values. though the slow downs only occur when the above is executed more than once per step)..

so yea, what do you guys think is the best way to hold this data, and retrieve it etc? please provide example :( thanks

flag

50% accept rate
Are there objects with ids? Are you saying objIdMap[someobj->getID()] somewhere? – jmucchiello Nov 6 at 15:05
no, im passing the value of the ID to the function from gamemaker. (this is a DLL for gamemaker). – Prodigga Nov 6 at 15:13
Please clarify what sorts of access are needed on the map - perhaps there is a better way to organize your data. – hjhill Nov 6 at 15:57
1  
You mentioned that you expect there to be around 2,000 items in your map, but that the specific set of items is changing as new items are created and old items are (presumably) retired. Are you certain that the old items are being removed from the map once they are no longer active? If you are not removing them, then your map will grow without bound, even though only 2,000 of the items are active at any given time; eventually the map will hold so many items your performance will suffer. I suggest you start by monitoring the size of the map over time to verify it is in the expected range. – Eric Melski Nov 6 at 17:14
Why are the ids doubles? – jmucchiello Nov 6 at 19:21

3 Answers

vote up 2 vote down

This is probably slow because you're copying an entire map object each time you do:

objIdMap[id] = objSettingsMap;

It's probably better to first insert an empty map into the larger map, and then insert the actual data.

map<int, double> objSettingsMap; 
objIdMap[id] = objSettingsMap; // insert the empty map so copying is fast

// Use a reference to the map so you don't have to keep looking it 
// up in the parent map
//
map<int, double>& mapref = objIdMap[id];
mapref[0] = value;
mapref[1] = value;
...etc..

Edit: You also say:

but on every step of the game every object with an id in objIdMap is accessing it to retrieve their objSettingsMap

When an object accesses its objSettingsMap, are you sure it's not making a copy of the map? Also, when you say the numbers start at 100000, do you mean you start counting from 100000? i.e. key1 = 100000, key2 = 100001, key3 = 100002, etc. Because if this is so, you can simply use a vector and subtract 100000 from each key.

link|flag
no its still struggling (granted it is a little better.). would large key values have anything to do with this? the id values for objects start from 100000 and go up. i can just minus all id's that are passed to the function by 100000. thought i dont think it'd make much of a difference. – Prodigga Nov 6 at 15:05
in reply to your edit: if i want to get the 1st setting of something with id "id", i do this: return(objIdMap[id][1]); – Prodigga Nov 6 at 15:14
yes, thats exactly how the id's work. but objects get created and destroyed really quickly; can reach a thousand in 10 or so seconds. the objects get destroyed but the sysem doesnt go back and reassign the id's that they where using (so "id" just keeps increasing as objects are created) – Prodigga Nov 6 at 15:18
I think you can save a lookup in the above code by writing map<int, double>& mapref = (objIdMap[id] = objSettingsMap); -- parentheses optional. – Thomas Nov 6 at 15:55
vote up 0 vote down

It seems as though you really do not need to nest the maps like that. I would suggest defining a "settings" struct that holds the settings data you need to store.

struct Settings
{
    double setting1;
    double setting2;
    double settingN;
};

map<double,  Settings > objIdMap;

This way you do not have to add a whole map every time. That should help the performance. Maps are pretty good for accessing data, but if you are doing it a lot you should use an array or vector. If you know how to use maps, vectors should be easy to pick up.

vector<Settings> objects;

objects.push_back(Settings() );

objects[0].setting1 = 1234;

That is of course probably not a practical application of a vector, but it shows you how to add objects and access them. With vectors there is a hit when adding an object that causes the memory to be reallocated, but the access is immediate (aside from the memory needing to be cached).

If objects are being remove and added a lot I would suggest marking indexes for recycling. You can do this by simply keeping another vector that holds the indices of the objects that are no longer active. When adding check that list to see if there is an index to recycle. If the list is empty push back another. This way you are minimizing you removal and addition of objects, which are the most expensive operations.

link|flag
No, he's doing lookup on the id. A list would be slower. – jmucchiello Nov 6 at 15:08
True, a list is not a good suggestion. But the idea of using a special struct with predefined fields, instead of a map to store setting seems like it would be faster. – Charles Salvia Nov 6 at 15:27
Yeah I also agree on not using a list for this application, I misread what he was doing. – resolveaswontfix Nov 6 at 15:35
Charles: I agree. I wish I'd thought of it before my answer. – jmucchiello Nov 6 at 19:23
hey guys, with the first code resolveaswontfix has posted, how can i access, say, setting1 from the map? figured "objIdMap[id].setting1" would work but it isnt.. – Prodigga Nov 7 at 7:05
vote up 1 vote down

Why isn't this just map<double, vector<double> >?

link|flag
+1 As long as second key seems to be consecutive int identifiers, this will be a better approach. @Prodigga: use map only when keys are scattered, and rethink the type of first key. – fnieto Nov 6 at 19:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.