existance map in c++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T07:50:17Zhttp://stackoverflow.com/feeds/question/124966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/124966/existance-map-in-c3existance map in c++Net Citizen2008-09-24T01:54:56Z2008-09-25T10:36:51Z
<p>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?</p>
http://stackoverflow.com/questions/124966/existance-map-in-c/124970#12497021Answer by Alexander Kojevnikov for existance map in c++Alexander Kojevnikov2008-09-24T01:56:53Z2008-09-24T01:56:53Z<p>Looks like you need a <a href="http://www.cplusplus.com/reference/stl/set/" rel="nofollow">set</a>.</p>
http://stackoverflow.com/questions/124966/existance-map-in-c/124994#1249946Answer by David Dibben for existance map in c++David Dibben2008-09-24T02:04:01Z2008-09-24T02:04:01Z<p>If you want the same type of behavior as std::map then you want a std::set.</p>
<p>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. </p>
http://stackoverflow.com/questions/124966/existance-map-in-c/125002#1250022Answer by Léo for existance map in c++Léo2008-09-24T02:05:45Z2008-09-24T02:05:45Z<p>If your data is numerical you can use an std::vector which is optimized for space:</p>
<pre><code>D:\Temp>type vectorbool.cpp
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<bool> vb(10);
vb[5] = true;
for (vector<bool>::const_iterator ci = vb.begin(); ci != vb.end(); ++ci) {
cout << *ci << endl;
}
}
D:\Temp>cl /nologo /W4 /EHsc vectorbool.cpp
vectorbool.cpp
D:\Temp>vectorbool.exe
0
0
0
0
0
1
0
0
0
0
</code></pre>
http://stackoverflow.com/questions/124966/existance-map-in-c/125784#1257840Answer by VarunGupta for existance map in c++VarunGupta2008-09-24T07:13:05Z2008-09-24T07:13:05Z<p>You can keep using std::map for the desired purpose.</p>
<p>To check if a particular item (of key type) exists in the map or not, you can use following code:</p>
<pre><code>if (mapObj.count(item) != 0)
{
// item exists
}
</code></pre>
<p>As answered earlier, std::set will do the job as well. Interestingly both, set and map are represented as Trees internally.</p>
http://stackoverflow.com/questions/124966/existance-map-in-c/127990#1279904Answer by MSalters for existance map in c++MSalters2008-09-24T15:49:33Z2008-09-24T15:49:33Z<p>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)</p>
http://stackoverflow.com/questions/124966/existance-map-in-c/130375#1303751Answer by ceretullis for existance map in c++ceretullis2008-09-24T22:40:09Z2008-09-24T22:40:09Z<p>If the key IS the value, then you might also consider a "bloom filter" rather than a set.</p>
http://stackoverflow.com/questions/124966/existance-map-in-c/132539#1325392Answer by Harald Scheirich for existance map in c++Harald Scheirich2008-09-25T10:36:51Z2008-09-25T10:36:51Z<p>You should probably look at <a href="http://www.cplusplus.com/reference/stl/set/" rel="nofollow"><code>stl::set</code></a> for what you need. A <a href="http://www.cplusplus.com/reference/stl/bitset/" rel="nofollow"><code>stl::bitset</code></a> is another option.</p>
<p>It will depend on how you need to use the information that would define which of these is better. A <code>set</code> is a sorted data structure, insertion, find and deletion take O(LOG N) time. But if you need to <strong>iterate</strong> over all the values that you have marked for "existence" then the <code>set</code> is the way to go. </p>
<p>If you only need to mark and lookup the <strong>fact</strong> that something is a member of a set then the <code>bitset</code> might be better for you. Insertion, find and delete only takes O(1), but you can only collect <code>int</code> values. Iterating over all the marked values will take O(N) as you need to go through the whole set to find the members that are set to <code>true</code>. You can use it in concert with a <a href="http://www.cplusplus.com/reference/stl/map/" rel="nofollow">stl::map</a> to map from the values you have to the numerical values the <code>bitset</code> needs. </p>
<p>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</p>