Update README

This commit is contained in:
Andrew Scott 2022-05-31 23:16:48 -04:00
parent 6e53163fd0
commit a0742dee60
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -1,3 +1,5 @@
# HashMaps
HashMaps in Python using (Separate) Chaining, and Open Addressing with Quadratic Probing
These HashMap implementations were my final project for **CS 261 - Data Structures**
at Oregon Sate. hash\_map\_oa.py features open addressing with quadratic probing
while hash\_map\_sc.py uses separate chaining.