Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Unordered associative containers (C++): Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 08:39, 21 July 2012
edit
146.232.186.52
(
talk
)
→
Custom hash functions
← Previous edit
Revision as of 16:13, 1 October 2012
edit
undo
137.226.154.218
(
talk
)
→
Custom hash functions
Next edit →
Line 209:
struct hash_X{
size_t operator()(const X &x)
const
{
return hash<int>()(x.i) ^ hash<int>()(x.j) ^ hash<int>()(x.k);
}