existance map in c++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:50:17Z http://stackoverflow.com/feeds/question/124966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124966/existance-map-in-c 3 existance map in c++ Net Citizen 2008-09-24T01:54:56Z 2008-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#124970 21 Answer by Alexander Kojevnikov for existance map in c++ Alexander Kojevnikov 2008-09-24T01:56:53Z 2008-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#124994 6 Answer by David Dibben for existance map in c++ David Dibben 2008-09-24T02:04:01Z 2008-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#125002 2 Answer by Léo for existance map in c++ Léo 2008-09-24T02:05:45Z 2008-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&gt;type vectorbool.cpp #include &lt;iostream&gt; #include &lt;vector&gt; using namespace std; int main() { vector&lt;bool&gt; vb(10); vb[5] = true; for (vector&lt;bool&gt;::const_iterator ci = vb.begin(); ci != vb.end(); ++ci) { cout &lt;&lt; *ci &lt;&lt; endl; } } D:\Temp&gt;cl /nologo /W4 /EHsc vectorbool.cpp vectorbool.cpp D:\Temp&gt;vectorbool.exe 0 0 0 0 0 1 0 0 0 0 </code></pre> http://stackoverflow.com/questions/124966/existance-map-in-c/125784#125784 0 Answer by VarunGupta for existance map in c++ VarunGupta 2008-09-24T07:13:05Z 2008-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#127990 4 Answer by MSalters for existance map in c++ MSalters 2008-09-24T15:49:33Z 2008-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#130375 1 Answer by ceretullis for existance map in c++ ceretullis 2008-09-24T22:40:09Z 2008-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#132539 2 Answer by Harald Scheirich for existance map in c++ Harald Scheirich 2008-09-25T10:36:51Z 2008-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>