A hash table is a type of data structure that is widely used to make the search procedure more agile. Thus, it is widely used not for insertion or removal, but for faster searches.
In this repo, an implementation of the hash table in the Golang language was made using the multiplication method as the hash method. Furthermore, linked queues were used to handle collisions.
- Enter your terminal;
- Access the repository you want to clone;
- Enter the command line: git clone https://github.com/EdJunior0/hash-table-implementation.git
- After cloning the project, enter in folder and open your terminal;
- Paste: go run main.go