What is the best way to implement this composite GetHashCode()

28,057

Solution 1

Like described by Jon Skeet in this SO answer, it is best practice to pick some prime numbers and multiply these with the single hash codes, then sum everything up.

public int GetHashCode()
{
    unchecked
    {
        int hash = 17;
        // Maybe nullity checks, if these are objects not primitives!
        hash = hash * 23 + Zoom.GetHashCode();
        hash = hash * 23 + X.GetHashCode();
        hash = hash * 23 + Y.GetHashCode();
        return hash;
    }
}

The problems with xor hashes are:

  • if X is equal to Y then your hash will be just Zoom, because then X ^ Y = X ^ X = 0 holds
  • xor is a symmetric operator, it will produce the exact same hashes for the objects [Zoom = 3, X = 5, Y = 7], [Zoom = 3, X = 7, Y = 5], [Zoom = 7, X = 5, Y = 3] etc.

These facts make the xor-method more likely to cause collisions.

In addition to Jons post, consider using a unchecked context, for explicitly ignoring overflows. Because like the MSDN says:

If neither checked nor unchecked is used, a constant expression uses the default overflow checking at compile time, which is checked. Otherwise, if the expression is non-constant, the run-time overflow checking depends on other factors such as compiler options and environment configuration.

So while usually overflows will be unchecked, it may be that it fails somewhen in some environment or built with some compiler option. But in this case you want to explicitly not check these overflows.

Update:

By the way: someInt.GetHashCode() returns someInt. Like this, it is of course the fastest possible and a perfect hash distribution without a single collision. How else would you map an int to an int-hash? :) So what I wanted to say: Your first approach:

return (Zoom + X + Y).GetHashCode();

and your second one:

return Zoom.GetHashCode() + X.GetHashCode() + Y.GetHashCode();

are exactly the same. You dont even have to call GetHashCode and both are very likely to have collisions. Maybe even worse than the xor method, if you very likely have small integer values for all three ints.

Update 2:

As I wrote in the comment to ChaosPandions post: If you just have those three int values, and X, Y and Zoom are relatively small numbers (smaller than 1000 or 10000) this one may be also a good hash generator:

public int GetHashCode()
{
    return (X << 16) ^ (Y << 8) ^ Zoom;
}

It just distributes the bits in the hash value (example in big-endian for readability):

00000000 00000000 00000011 00110001    X = 817
00000000 00000000 00011011 11111010    Y = 7162
00000000 00000000 00000010 10010110    Zoom = 662

00000011 00110001 00000000 00000000    X << 16
00000000 00011011 11111010 00000000    Y << 8
00000000 00000000 00000010 10010110    Zoom

00000011 00101010 11111000 10010110    (X << 16) ^ (Y << 8) ^ Zoom

Solution 2

Neither of the implementations in your question are ideal. For example, they'll return exactly the same hash for { Zoom=1, X=2, Y=3 }, { Zoom=2, X=3, Y=1 }, { Zoom=3, X=1, Y=2 } etc etc.

I usually use something like this:

public override int GetHashCode()
{
    // 269 and 47 are primes
    int hash = 269;
    hash = (hash * 47) + Zoom.GetHashCode();
    hash = (hash * 47) + X.GetHashCode();
    hash = (hash * 47) + Y.GetHashCode();
    return hash;
}

(From memory, I think the C# compiler uses something similar when it generates the GetHashCode methods for anonymous types.)

Solution 3

I know this questions is kind of old but nowadays you can easily create your hash code by using System.HashCode class

https://docs.microsoft.com/en-us/dotnet/api/system.hashcode.combine?view=netcore-3.1

In this specific case it would look like

public override int GetHashCode()
{
    return HashCode.Combine(Zoom, X, Y);
}

Solution 4

I've actually found this to be really effective.

public override int GetHashCode ()
{
    return Zoom.GetHashCode() ^ X.GetHashCode() ^ Y.GetHashCode();
}

Solution 5

public override int GetHashCode ()
{
    return (Zoom.ToString() + "-" + X.ToString() + "-" + Y.ToString()).GetHashCode();
}
Share:
28,057
Frank Krueger
Author by

Frank Krueger

I am an engineer living in Seattle. I have been programming for about 15 years. I started out with video game hacking with the Code Alliance. Moved on to embedded systems development in an R&amp;D group at GM. Did way too much graphics (3D) programming. Then did a lot of network programming for large data centers. Was forced to get my Master's in Electrical Engineering. Got into compiler and interpreter development. Spent some time coding at Microsoft. Moved on a year later to start my own company creating control systems and web apps. I love programming and have spent way too much time learning too many languages, frameworks, APIs, paradigms, and operating systems. Super Secret Code: pL95Tr3

Updated on November 01, 2020

Comments

  • Frank Krueger
    Frank Krueger over 3 years

    I have a simple class:

    public class TileName {
        int Zoom, X, Y;
    
        public override bool Equals (object obj)
        {
            var o = obj as TileName;
            return (o != null) && (o.Zoom == Zoom) && (o.X == X) && (o.Y == Y);
        }
    
        public override int GetHashCode ()
        {
            return (Zoom + X + Y).GetHashCode();
        }
    }
    

    I was curious if I would get a better distribution of hash codes if I instead did something like:

        public override int GetHashCode ()
        {
            return Zoom.GetHashCode() + X.GetHashCode() + Y.GetHashCode();
        }
    

    This class is going to be used as a Dictionary key, so I do want to make sure there is a decent distribution.

  • Steven
    Steven about 14 years
    This will probably give a nice distribution, but is really bad for performance, because at least one new string and one new string array is created on each call to GetHashCode. You rather have bad distribution than this.
  • LukeH
    LukeH about 14 years
    While this is better than the implementations in the question, it's still not great. For example, it doesn't take the field ordering into account, so { Zoom=1, X=2, Y=3 }, { Zoom=2, X=3, Y=1 }, { Zoom=3, X=1, Y=2 } etc etc will all result in the same hash being returned. Some sort of rolling multiplication and/or sum will avoid this (and probably give better distribution too).
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    @Luke: agreed. @ChoasPandion: please read this here: stackoverflow.com/questions/263400/…
  • LukeH
    LukeH about 14 years
    @Philip: I have seen Jon mention it before, but I can't remember where I originally picked it up. I think it's a fairly common implementation.
  • ChaosPandion
    ChaosPandion about 14 years
    @Luke - I agree, generally I will always try use the simplest solution to any problem. For any serious application you will want to use an algorithm with a smaller chance of collision.
  • Fede
    Fede about 14 years
    @Steven, this can be cached once calculated, and clean the cached value any time Zoom, X or Y are set.
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    @ChaosPandion: Jon Skeets solution is just as simple and with a smaller chance of collision. Its not like thats a very sofisticated large algorithm or so. If you dont care about collisions you can just return 1; statically for every instance. Ok, just kidding... :D
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    Yeah, its just a good practice, more people should accustom themselves to.
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    @Fede: you can either cache the result of a slow algorithm, or just use the fast one. And btw: caching makes only sense if you have readonly fields, or you have to store the fields old values, too. That would get messy...
  • ChaosPandion
    ChaosPandion about 14 years
    @Philip - I've used this for dictionaries of objects upwards of 500K in size without any problem. Of course the values I hashed were more complex than the example.
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    @ChaosPandion: Youre right, I used that xoring very often, too. That clearly depends on the values and their distribution. If you have millions of entries in the dictionary, and every entry has two int fields <= 50 the 'prime number multiplication' method may make the dictionary go much faster. Other applications may just go well with the xoring.
  • Philip Daubmeier
    Philip Daubmeier about 14 years
    Just came up with a new idea, maybe a compromise between our two solutions: If you just have those three int values, and X, Y and Zoom are relatively small numbers (smaller than 1000 or 10000) this one may be also a good hash generator: return (X << 16) ^ (Y << 8) ^ Zoom;
  • ChaosPandion
    ChaosPandion about 14 years
    @Philip - I like it. That certainly would resolve the situation you described.
  • Fede
    Fede about 14 years
    @Philip: you don't need to store the old values. You can cache the result of GetHashCode in a nullable int. If the cache is null, you calculate it, if it isn't then just return that. When setting the fields that affect the cache just set the cache to null. Caching makes sense when the cost of the operation times the number of times it will be called is the cause of a bottleneck.
  • James Westgate
    James Westgate about 7 years
    The OP did ask for decent distribution. Performance could be an issue but what size dataset are we looking at?