Tagged Questions
The unordered-set tag has no wiki summary.
5
votes
3answers
153 views
How to specialize std::hash<Key>::operator() for user-defined type in unordered containers?
To support user-defined key types in std::unordered_set<Key> and std::unordered_map<Key, Value>
one has to provide operator==(Key, Key) and a hash functor:
struct X { int id; /* ... */ };
...
5
votes
2answers
181 views
Are there no specializations of std::hash for standard containers?
I just found myself a little bit surprised being unable to simply use a
std::unordered_set<std::array<int, 16> > test;
because there does not seem to be a std::hash specialization for ...
5
votes
3answers
433 views
Passing a boost::unordered_set as the result map to boost::split
Does anyone know if it's kosher to pass a boost::unordered_set as the first parameter to boost::split? Under libboost1.42-dev, this seems to cause problems. Here's a small example program that ...
5
votes
4answers
2k views
tr1::hash for boost::thread::id?
I started to use the unordered_set class from the tr1 namespace to speed-up access against the plain (tree-based) STL map. However, I wanted to store references to threads ID in boost ...
4
votes
5answers
326 views
size_t: an operator? (and a way to use unordered_set)
What is
operator size_t () const
Environment: Visual Studio 2010 Professional
TL; DR
Today I was searching for a way to use std::tr1::unordered_set. Because I asked for how to use std::map last ...
4
votes
1answer
318 views
Fastest way for a random unique subset of C++ tr1 unordered_set
This question is related to
this one, and more precisely to this answer to it.
Here goes: I have a C++/TR1 unordered_set U of unsigned ints (rough cardinality 100-50000, rough value range 0 to 10^6).
...
3
votes
2answers
54 views
std::unordered_set<Foo> as member of class Foo
I'm writing a class that has an unordered_set of its own type as a member.
Therefore I need to write a specialization for hash<Foo>. This specialization needs to be defined after Foo is ...
3
votes
3answers
2k views
Boost - unordered_set tutorial/examples/ANYTHING?
I'd like to use unordered_set in a project.
However, documentation for it is either incomplete or just a technical reference, no examples.
Can anyone provide links to online resources which deal ...
3
votes
1answer
127 views
unordered_set of TCHAR* requirements?
I want to use data structure that serves like .Net HashSet, I tried to use unordered_set with the default hashing method and custom comparer as follows:
struct comparer
{
bool operator()( ...
2
votes
1answer
64 views
Hashing function for nested struct in struct when using an unordered_set
I'm trying to use an unordered_set to maintain an unique list of structs. I've defined the hash function for the struct, Name, however I receive compile errors when I extend the Name struct to contain ...
2
votes
4answers
91 views
Getting the rightmost element in an unordered_set (or print the contents in reverse)
I have an unordered_set as follow:
unordered_set <long> valueSet;
/*the following insertion is done in order (from 1 to 10000),
*unordered_set will keep the elements based on the insertion ...
2
votes
2answers
227 views
boost::unordered_map — Need to specify a custom hash function for hashing std::set<int>?
I'd like use boost::unordered_map<key,value>, where key is a std::set<int>. Since a set of integers is no built-in type, I assumed I had to supply my own hash function (or, rather, I was ...
2
votes
2answers
432 views
std::unordered_set constructors
I've been looking at the constructors of unordered_set. Is it not possible to construct an unordered_set with a custom allocator instance WITHOUT setting the number of hash buckets? I'd really rather ...
1
vote
2answers
31 views
How to get headers for unordered_set in gcc v4.1.2?
I'd like to use unordered_set without installing Boost. I tried to add --std=gnu++0x but it is not a recognized option. Does v4.1.2 include unordered_set? If so, how do I get the header file for it?
...
1
vote
3answers
71 views
how to free the memory of unordered_set?
I wonder how to free the memory std::unordered_set took?
I think unordered_set::clear() just clear the set without free the memory.
I need to free the unordered_set hold by local function. Each time ...
1
vote
3answers
269 views
Generic hash for tuples in unordered_map / unordered_set
Why doesn't std::unordered_map<tuple<int, int>, string> just
work out of the box?
It is tedious to have to define a hash function for tuple<int, int>, e.g.
template<> struct ...
1
vote
2answers
163 views
C++: shared_ptr as unordered_set's key
Consider the following code
#include <boost/unordered_set.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
int main()
{
boost::unordered_set<int> s;
...
0
votes
0answers
54 views
boost::unordered_set size() returns invalid number?
I have replaced most of my std::set's and std::map's with boost::unordered_set's and boost::unordered_map's as I believe that in my case it will be a great speed improvement and I don't need the ...
0
votes
3answers
126 views
unordered_set: is pointer address a good hash?
i want to store a set of (smart) pointers in a hash set, either <boost/unordered_set>. After 10 seconds of thought, i came up with this hash function:
typedef boost::shared_ptr<myType> ...
0
votes
3answers
98 views
Storing elements in an unordered_set vs storing them in an unordered_map
Suppose I have the following User struct:
struct User {
string userId;
UserType userType; // UserType is just an enumeration
string hostName;
string ipAddress;
//and more ...
0
votes
1answer
90 views
Unordered set (const char) much slower than unordered set (string)
I'm loading a very long list from disk into an unordered_set. If I use a set of strings, it is very fast. A test list of about 7 MB loads in about 1 second. However, using a set of char pointers takes ...
0
votes
1answer
176 views
boost/unordered_set: compile error with mingw ()
I have a piece of code that uses boost's unordered_set
#include <boost/unordered_set.hpp>
boost::unordered_set<string> mySet(100);
It compiles and works fine with gcc under unix. When I ...
0
votes
2answers
203 views
Unordered_set questions
Could anyone explain how an unordered set works? I am also not sure how a set works. My main question is what is the efficiency of its find function.
For example, what is the total big O run time of ...
0
votes
2answers
306 views
boost unordered set not working
I am new to boost. I am trying to implement boost::unorder_set. Here is the code:
struct point {
int x;
int y;};
bool operator==(point const& p1, point const& p2) {
return p1.x == p2.x ...
0
votes
3answers
427 views
hash tables and 2d vectors
I want to push a 2d vector into a hash table row by row and later search for a row (vector) in the hash table and want to be able to find it. I want to do something like
#include <iostream>
...
0
votes
2answers
91 views
Preventing keys of different hash values from landing in same bucket with unordered_set
This might be a silly question, but here goes :
I hashed a dictionary of words into an unordered_set based hash-table. My hash function was made intentionally "bad", in that all strings that ...
0
votes
1answer
280 views
Searching std::unordered_set by hash value and predicate
How can I search a std::unordered_set knowing hash value and having some predicate object? (The predicate determining equivalence by pred(x) && pred(y) meaning x == y.)
0
votes
3answers
417 views
C++ a NULL pointer in the STL container
I am, unfortunately, not working on a program developed by myself fully.
I recently I noticed a Visual Studio Fatal Error on operator-- of unordered_set, which was called from simple insertion of a ...
-1
votes
5answers
124 views
how to adapt an unordered STL container to store only Values of a Key-Value pair?
The new C++11 standard has unordered containers. In particular, the std::unordered_map<Key, Value> stores a std::pair<Key, Value> in a location based on std::hash<Key> (default hash ...