The unordered-set tag has no wiki summary.
-5
votes
1answer
94 views
C++ 11: conversion const int* to int* using unordered_set::push
I have this problem of conversion with this code using c++11 standard:
#include<unordered_set>
struct B
{
int x, y;
};
class A
{
struct hash
{
std::size_t operator()( int* const ...
1
vote
0answers
37 views
Compile eror on serializing boost::unordered_set
First of all, Does boost::serialization support unordered_set now? I didn't find the header boost/serialization/unordered_set.hpp.
Here is the code I tried to implement:
namespace boost {
namespace ...
1
vote
1answer
25 views
questions about unordered_multiset_of in boost bimap
I am implementing a boost::bimap and I am considering using unordered_multiset_of
but unordered_multiset_of need to pass a hash function and equal operator to it. And I cant get it right.
class ...
0
votes
1answer
57 views
Segmentation Fault in program with vector iterators
Can someone tell me why this compiles and runs fine in visual studio, but fails with a segmentation fault when compiled GNU C++ compiler
can't for the life of me figure this out. I went through and ...
1
vote
4answers
149 views
std::vector faster than std::unordered_set?
In my custom physics engine, the biggest bottleneck is a method that gets all bodies from the spatial partitioning (a 2D grid), and returns a collection containing only unique pointers to body.
...
2
votes
2answers
124 views
Overloading == operator in unordered_set
I'm trying to create an unordered_set of Intervals as defined below:
struct Interval {
unsigned int b; //begining index
unsigned int e; //end index
bool updated; //true if concat. ...
1
vote
1answer
87 views
Inserting into unordered_set with custom hash function
I have the following code to make an unordered_set<Interval>. This compiles fine.
struct Interval {
unsigned int begin;
unsigned int end;
bool updated; //true if concat. initially ...
-2
votes
3answers
78 views
stl unordered_set how to set initial bucket count
For an unordered_map i set the initial bucket count by this:
unordered_map<string, dictionaryWord> dictionary(17749); // set initial bucket count to 17749
This way does not seem to work for ...
0
votes
1answer
156 views
Smart pointers and unordered_map, unordered_set etc
I require a searchable collection of GUIDs (stored as 16 bytes) where the actual unique ID is a member of a smart pointer struct/class. This is reference counted and pointed to by other objects on a ...
3
votes
5answers
224 views
How to make unordered set of pairs of integers in C++?
The program does not compile an unordered set of pairs of integers, but it does for integers. Can unordered_set and its member functions be used on user defined types, and how can I define it?
...
0
votes
1answer
66 views
C++ Get byte representation of unordered_set *without* serialization
In a distributed computing setup, I want to send an unordered_set to many nodes. I am aware of serialization in C++ e.g. by using boost::serialization. My beef with serialization is that I'm facing ...
0
votes
1answer
48 views
How to get an ordered set in OCL?
When I have a result of type Set(Integer), numbers are not ordered. We have an operation usable on collections called sortedBy ( expr : OclExpression ) : Sequence(T), but when there's only integers ...
4
votes
1answer
78 views
Does anyone actually know how the order of a set is decided in Python? [duplicate]
Is it somehow related to the number 42, like all the great mysteries of the universe?
There does seem to be some consistency in that calling set() on a string always seems to resolve to the same ...
1
vote
2answers
107 views
find multiple values in unordered_set using find
I want to use specified equal_to function int unordered_set
The sample code likes this:
struct myEqual
{ //string with one different character is considered equal
bool operator()(const ...
1
vote
1answer
68 views
using lambda do define hash function throws exception
The following code defines a unordered_set.
The code compiles just fine.
But using the lambda function instead of functor throw when calling find:
libc++abi.dylib: terminate called throwing an ...
0
votes
1answer
83 views
How to specialize std::hash for type from other library
So the library I use has an enum (say it's named LibEnum). I need to have an std::unordered_set of LibEnum, but I get compilation error that there is no specialized std::hash for it. I could easily ...
2
votes
1answer
126 views
C++ std::unordered_set SIGFPE exception
I wrote a program and I'm quite amused by the fact that I'd run it dozens of times -- I've even wrote down results from multiple executions --, and now it does not work.
You might think I'm high as a ...
2
votes
4answers
254 views
Is std::unordered_set contiguous (like std::vector)?
I'm storing pointers in std::unordered_set, because I don't want any duplicate (I delete the pointers in the collection, so if there is a duplicate I will attempt to delete an already deleted ...
0
votes
2answers
131 views
boost lib, unordered set with c++ is giving me a headache
ok, I know this is probably going to be something really easy but I have this code implementing the boost libraries (this is my first time using it) and I can't seem to get it to work correctly. ...
0
votes
2answers
495 views
How to make a c++11 std::unordered_set of std::weak_ptr
I have a set like this: set<weak_ptr<Node>, owner_less<weak_ptr<Node> > > setName;
It works fine. But I would like to change it to an unordered set. However, I get about six ...
0
votes
2answers
161 views
unordered_set c++
I've noticed that when I use an unordered set unordered_set<int> theSet; to hold large number of integers, it doesn't free the memory even with calls to clear() or rehash(0). Even if I defined ...
0
votes
1answer
351 views
hash function of unordered_set
I'm using a std::unordered_set for the first time and have a question about the hash function. As far as I understand, if you don't specify a hash function it will default to std::hash.
I have a ...
2
votes
1answer
81 views
buckets in std::unordered_multiset
Say I have an std::unordered_multiset<int> which is named hashTable and a bucket i. Can I iterate through the elements of the ith bucket?
0
votes
1answer
287 views
VC10 unordered_set/map move constructor bug?
It seems that the move constructors of unordered_set/map under VC10 (Visual Studio 2010) puts the right hand side to an undefined state after being invoked, causing other operations (such as 'insert') ...
5
votes
1answer
187 views
Random element from unordered_set in O(1)
I've seen people mention that a random element can be grabbed from an unordered_set in O(1) time. I attempted to do so with this:
std::unordered_set<TestObject*> test_set;
//fill with data
...
1
vote
3answers
173 views
How to efficiently replace elements in an unordered_set while iterating over it?
Suppose you have an
std::unordered_set<std::shared_ptr<A>> as;
// (there is an std::hash<std::shared_ptr<A>> specialisation)
and you want to replace some of its elements ...
1
vote
3answers
209 views
map or hashmap for efficient lookup of generic strings?
I need to be able to store and lookup generic strings. I don't know much about the content of the strings, a little more then 2/3 are human language words with the rest being something closer to a ...
3
votes
2answers
122 views
Why do unordered_set operations like count and erase return a size_type?
Apparently, unordered_set::erase and unordered_set::count return something that is not strictly boolean (logically, that is, I'm not talking about the actual type).
The linked page reads for the ...
0
votes
1answer
331 views
Declaring hash function for unordered_set in c++?
I have to use unordered_set for a rather large project, and to make sure I was using it correctly I tried a small example.
#include <iostream>
#include <unordered_set>
using namespace ...
0
votes
1answer
427 views
difference on unordered_set from boost and standard
I am trying to use unordered_set from boost and standard for an application, the aim is to find the place, namely, the index of certain elements in this set. There is a subtle difference between the ...
2
votes
1answer
205 views
“remove one element” from unordered_set using erase(begin()) is slow in gcc
I'd like to have a function to "remove one element" from unordered_set.
However, when it's implemented using erase(begin()), it becomes extremely slow.
(This is in g++-4.5.3; maybe begin() has to ...
6
votes
2answers
405 views
How expensive is comparing two unordered sets for equality?
Given two std::sets, one can simply iterate through both sets simultaneously and compare the elements, resulting in linear complexity. This doesn't work for std::unordered_sets, because the elements ...
2
votes
1answer
141 views
Requirements for elements in std::unordered_set
std::unordered_set<my_type> my_set;
Which requirements must my_type fulfill here? (Besides a specialization for std::hash)
3
votes
1answer
174 views
When does rehashing occur for unordered associative containers?
I found this in the standard as the post-condition for the rehash function in unordered associative containers :
Post: a.bucket_count() > a.size() / a.max_load_factor() and a.bucket_count() >= n.
...
1
vote
4answers
143 views
Is the order of two same unordered_maps the same?
In other words, if I fill two unordered_map, or unordered_set, objects with exactly the same content and the same hashing function, will iterating over them give the same sequence of key/value pairs?
...
0
votes
3answers
368 views
unordered_set from std
I have to rewrite windows-code into crossplatform view. Here is the example:
std::unordered_set<Type>::iterator it = ...;
it._Ptr->_Myval->...
Everywere in code there is _Ptr member in ...
1
vote
3answers
2k views
How does one iterate through an unordered set in C++?
Suppose I have an unordered set
unordered_set<int> my_set;
myset.insert(1);
myset.insert(2);
myset.insert(3);
How do I iterate through it? I don't need to iterate in any order - just as long ...
1
vote
3answers
689 views
compilation problems with unordered set
I am trying to use an unordered_set from the C++ std library. I am using the std namespace.
using namespace std;
The unordered_set is within a function of mine. I would like to use it to memoize ...
1
vote
2answers
451 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
votes
5answers
266 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 ...
3
votes
2answers
145 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 ...
2
votes
1answer
309 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 ...
16
votes
3answers
3k 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; /* ... */ };
...
1
vote
3answers
172 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 ...
10
votes
2answers
792 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 ...
0
votes
3answers
648 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> ...
2
votes
4answers
187 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 ...
0
votes
3answers
703 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 ...
2
votes
2answers
846 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 ...
4
votes
4answers
2k 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 ...
