Giter Site home page Giter Site logo

hash-tables's Introduction

Hash Tables in Python

Hash tables are arguably the single most important data structures in existence. Used to implement everything from objects in JavaScript and dictionaries in Python to Memcached over a distributed computer network, hash tables are beloved by programmers for providing key/value storage with constant big-O time complexity for insertion, deletion, and access.

What is a hash table?

Underneath the hood, a hash table is simply an array with its elements indexed by a hashed key. Like arrays, hash tables are initialized to a fixed size and inserting, deleting, and reading elements within those boundaries can be accomplished in constant time, or O(1).

Hash Table

In this diagram, you can see the key (a string) is run through a hash function which produces an integer 0-15 which is used as the index in a 16-element array.

What is a hash function?

Hash functions map data of an arbitrary size to data of a fixed size. For example, a size-16 hash function might hash string-typed keys like so:

"foo" -> 10

"bar" -> 12

"baz" -> 5

"Hello world!" -> 6

"Very long keys can hash be hashed as well" -> 10

In this way, keys of any length can be mapped to an integer value which can be used as an array index for a hash table. Note that since there are an infinite amount of possible keys that must map to only 16 possible indices, values with different keys will inevitably collide.

There are many different types of hash functions with different uses (you may have come across cryptographic hashes for storing passwords in a database) but they generally have a few common characteristics:

  1. Deterministic: For a given input, the output will always be the same.
  2. Defined output range: For a hash table of size 16, all keys must hash to a value 0-15. For smaller values, this is usually accomplished using the modulo % operation.
  3. Non-invertible: You should not be able to reconstruct the input value from the output.

How are hash table collisions handled?

There are many ways to handle hash table collisions but we'll focus on the linked list chaining method.

Let's say we have a hash table of size 4 and we are adding 5 elements like so:

ht["a"] = "aardvark"

ht["b"] = "bear"

ht["c"] = "cat"

ht["d"] = "dog"

ht["e"] = "elephant"

Now, let's say our hash function maps the keys like so:

"a" -> 0

"b" -> 1

"c" -> 2

"d" -> 3

"e" -> 2

Our array would look something like this:

0 = <"a", "aardvark"> -> NULL

1 = <"b", "bear"> -> NULL

2 = <"c", "cat"> -> <"e", "elephant"> -> NULL

3 = <"d", "dog"> -> NULL

Now if we want to find the value stored for "e", we would first find it's hashed index (2), then travel through the linked list until we find the key/value pair with a matching key and return the value.

Note that while searching with a hashed index has time complexity of O(1), searching through a linked list has O(n). This is why sparsely populated hash tables have search/insert/delete of O(1), performance will degrade as they fill up and they can have a worst-case performance of O(n) if every single key happens to hash to the same value.

How do we prevent performance from degrading when the hash table fills up?

Due to this performance degradation, most languages, such as Python, will automatically resize the hash table when it reaches a certain capacity. This is done by creating a new hash table (usually doubling in size) and copying each element one-by-one into the new hash table.

Assignments

DAY 1

Your assignment is to implement a basic hash table in the basic_hash_table directory. You should be able to insert, read, and delete elements from the hash table. You do not need to handle collisions but should print a warning when you are overwriting an existing value.

Run your code by typing navigating to the directory then typing python3 b_hashtables.py in the terminal.

Run tests by typing python3 b_hashtables_tests.py.

DAY 2

Your assignment is to upgrade your basic hash table to handle collisions with linked list chaining. You should be able to insert an arbitrary amount of elements into your hash table, regardless of table size, and read them back without any data loss. You should also implement a resizing function that doubles the size of your hash table and copies all elements into the new data structure.

Run your code by typing navigating to the directory then typing python3 r_hashtables.py in the terminal.

Run tests by typing python3 r_hashtables_tests.py.

STRETCH GOALS

Update your HashTable to automatically double in size when it grows past a load factor of 0.7.

Update your HashTable to automatically halve in size when it shrinks past a load factor of 0.2. This should only occur if the HashTable has been resized past the initial size.

Refactor tests to pass with your resizing HashTable.

hash-tables's People

Contributors

ajb85 avatar briandoyle81 avatar carloc24 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.