What is hashCode used for? Is it unique?

Simple Expalantion via Analogy

The MSDN documentation killed a few of my brain cells.

I thought to save you some agony with a (hopefully) simpler explanation via story – i.e. crime thriller.

Summary: What is a hashcode?

Digital Fingerprint - Picture attribute to Pixabay - Freely available for use at: https://pixabay.com/en/finger-fingerprint-security-digital-2081169/

  • It’s a fingerprint. We can use this finger print to identify people of interest.

Read below for more details:

Think of a Hashcode as us trying to To Uniquely Identify Someone

I am a detective, on the look out for a criminal. Let us call him Mr Cruel. (He was a notorious murderer when I was a kid — he broke into a house kidnapped and murdered a poor girl, dumped her body and he’s still out on the loose – but that’s a separate matter). Mr Cruel has certain peculiar characteristics that I can use to uniquely identify him amongst a sea of people. We have 25 million people in Australia. One of them is Mr Cruel. How can we find him?

Bad ways of Identifying Mr Cruel

Apparently Mr Cruel has blue eyes. That’s not much help because almost half the population in Australia also has blue eyes.

Good ways of Identifying Mr Cruel

What else can i use? I know: I will use a fingerprint!

Advantages:

  • It is really really hard for two people to have the same finger print (not impossible, but extremely unlikely).
  • Mr Cruel’s fingerprint will never change.
  • Every single part of Mr Cruel’s entire being: his looks, hair colour, personality, eating habits etc must (ideally) be reflected in his fingerprint, such that if he has a brother (who is very similar but not the same) – then both should have different finger prints. I say “should” because we cannot guarantee 100% that two people in this world will have different fingerprints.
  • But we can always guarantee that Mr Cruel will always have the same finger print – and that his fingerprint will NEVER change.

Tying the analogy back to the functions:The above characteristics generally make for good hash functions. And this hash function is what will give us a fingerprint. This finger print might be represented as a long number.

So then what’s a ‘Collision’?

So imagine if I get a lead and I find someone matching Mr Cruel’s fingerprints. Does this mean I have found Mr Cruel?

……..perhaps! I must take a closer look. If i am using SHA256 (a hashing function) and I am looking in a small town with only 5 people – then there is a very good chance I found him! But if I am using MD5 (another famous hashing function) and checking for fingerprints in a town with +2^1000 people, then it is a fairly good possibility that two entirely different people might have the same fingerprint.

So what is the benefit of all this anyways?

The only real benefit of hashcodes is if you want to put something in a hash table – and with hash tables you’d want to find objects quickly – and that’s where the hash code comes in. They allow you to find things in hash tables really quickly. It’s a hack that massively improves performance, but at a small expense of accuracy.

So let’s imagine we have a hash table filled with people – 25 million suspects in Australia. Mr Cruel is somewhere in there….. How can we find him really quickly? We need to sort through them all: to find a potential match, or to otherwise acquit potential suspects. You don’t want to consider each person’s unique characteristics because that would take too much time. What would you use instead? You’d use a hashcode! A hashcode can tell you if two people are different. Whether Joe Bloggs is NOT Mr Cruel. If the prints don’t match then you know it’s definitely NOT Mr Cruel. But, if the finger prints do match then depending on the hash function you used, chances are already fairly good you found your man. But it’s not 100%. The only way you can be certain is to investigate further: (i) did he/she have an opportunity/motive, (ii) witnesses etc etc.

When you are using computers if two objects have the same hash code value, then you again need to investigate further whether they are truly equal. e.g. You’d have to check whether the objects have e.g. the same height, same weight etc, if the integers are the same, or if the customer_id is a match, and then come to the conclusion whether they are the same. this is typically done perhaps by implementing an IComparer or IEquality interfaces.

Key Summary

So basically a hashcode is a finger print.

  1. Two different people/objects can theoretically still have the same
    fingerprint. Or in other words. If you have two fingerprints that are the same………then they need not both come from the same person/object.
  2. Buuuuuut, the same person/object will always return the
    same fingerprint.
  3. Which means that if two objects return different hash codes then you know for 100% certainty that those objects are different.

It takes a good 3 minutes to get your head around the above. Perhaps read it a few times till it makes sense. I hope this helps someone because it took a lot of grief for me to learn it all!

Leave a Comment