I want to store strings and issue each with a unique ID number (an index would be fine). I would only need one copy of each string and I require quick lookup. I check if the string exist in the table often enough that i notice a performance hit. Whats the best container to use for this and how do i lookup if the string exist?
|
|
|
|
|
|
|
I would suggest tr1::unordered_map. It is implemented as a hashmap so it has an expected complexity of O(1) for lookups and a worst case of O(n). There is also a boost implementation if your compiler doesn't support tr1.
|
|||
|
|
|
|
sounds like an array would work just fine where the index is the index into the array. To check if it exists, just make sure the index is in bounds of the array and that its entry isn't NULL. EDIT: if you sort the list, you could always use a binary search which should have fast lookup. EDIT: Also, if you want to search for a string, you can always use a |
||||||
|
|
|
Try std::map. |
||
|
|
|
|
Are the Strings to be searched available statically? You might want to look at a perfect hashing function |
||
|
|
|
|
Easiest is to use std::map. It works like this:
|
||||||||
|
|
|
First and foremost you must be able to quantify your options. You have also told us that the main usage pattern you're interested in is lookup, not insertion. Let
In the case of large values for Before making any decision, though, you should also check: Cheers V. |
|||
|
|
|
|
Google sparse hash maybe |
||
|
|
|
|
try this:
|
||
|
|

