I want something like an std::map, but I only want to see if the item exists or not, I don't actually need a key AND value. What should I use?
|
|
Looks like you need a set. |
||
|
|
|
|
If you want the same type of behavior as std::map then you want a std::set. If you are mixing insert/delete and query operations then the set is probably the best choice. However, if you can populate the set first then follow it will the queries it might be worth looking at using a std::vector, sorting it then using binary_search to check for existence in the vector. |
||
|
|
|
If you really need existance only, and not even an order, you need an unordered_set. (Available from your favorite C++0x vendor or boost.org) |
||
|
|
|
|
If your data is numerical you can use an std::vector which is optimized for space:
|
||||||
|
|
|
You should probably look at It will depend on how you need to use the information that would define which of these is better. A If you only need to mark and lookup the fact that something is a member of a set then the Look at the operations that you need to perform with the values in your set and you should be able to choose the appropriate data structure |
||
|
|
|
|
If the key IS the value, then you might also consider a "bloom filter" rather than a set. |
||||
|
|
|
You can keep using std::map for the desired purpose. To check if a particular item (of key type) exists in the map or not, you can use following code:
As answered earlier, std::set will do the job as well. Interestingly both, set and map are represented as Trees internally. |
||||
|
