Tagged Questions

7
votes
4answers
3k views

Hash function for a pair of long long?

I need to map a pair of long long to a double, but I'm not sure what hash function to use. Each pair may consist of any two numbers, although in practice they will usually be numbers between 0 and ...
5
votes
5answers
817 views

Is it worth using std::tr1 in production?

I'm using MS VC 2008 and for some projects Intel C++ compiler 11.0. Is it worth using tr1 features in production? Will they stay in new standard? For example, now I use stdext::hash_map. TR1 defines ...
4
votes
5answers
1k views

How to check for TR1 while compiling?

We are programming a logging library that keeps itself in a .hpp file. We would like to include <tr1/unordered_map> (if the compiler supports TR1,) or the standard <map> otherwise. Is ...
4
votes
7answers
9k views

I don't understand std::tr1::unordered_map

I need an associative container that makes me index a certain object through a string, but that also keeps the order of insertion, so I can look for a specific object by its name or just iterate on it ...
3
votes
2answers
1k views

Defining a hash function in TR1 unordered_map inside a struct

According to this, it is possible to define an equality function in a TR1 unordered_map like this: #include <tr1/unordered_map> using namespace std; using namespace std::tr1; struct foo{ ...
2
votes
1answer
155 views

Custom Allocator in tr1's unordered_map

I have a few problems regarding a custom allocator for an unordered_map. I have a large dataset and I need to hash on a string as key. So I came to know that providing a custom memory allocator would ...
2
votes
2answers
204 views

Remove duplicates from two large text files using unordered_map

I am new to a lot of these C++ libraries, so please forgive me if my questions comes across as naive. I have two large text files, about 160 MB each (about 700000 lines each). I need to remove from ...
2
votes
1answer
137 views

Index strings by other strings

I need to index specific strings with other strings and I can't really find a good way to do so. I tried to use tr1::unordered_map, but I'm having some difficulties using it. If someone could tell me ...
1
vote
3answers
775 views

Why Visual Studio cannot find 'tr1/unordered_map?

I want to use google-ctemplate in a project. But if I include the basic file, I get the following error (with Visual Studio C++ 2005): Error 1 fatal error C1083: Cannot open include file: ...
1
vote
3answers
724 views

C++ <map> vs <unordered_map> vs <tr1/unordered_map> vs <ext/unordered_map>

I'm currently looking for a better alternative to std::map and have come across classes mentioned in the post title. Could someone clarify the differences between them, not in terms of ...