Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 529 Bytes

File metadata and controls

15 lines (11 loc) · 529 Bytes

Hashmap-Library

A hashmap library implementation using a dynamic vector data structure that I implemented as well. In addition, programmed tests for testing the library.

##############################################################################

files: hash_funcs.h hashmap.c - the implementation of the hashmap library. test_pairs.h test_pairs.c - test suite for testing the library vector.c - a dynamic vector data structure to use for the the implementation of the hashmap library. Makefile - to compile the program.