This document contains code for an assignment on implementing dictionaries and hashing. It includes:
1. Code for an Employee class and KeyValuePair class to be used for testing.
2. An incomplete HashDictionary class that needs probe(), hash(), insert(), and find() methods implemented using quadratic probing and mid-square hashing.
3. Main() function with commented out tests to validate the implemented methods.