https://github.com/nickklos10/hashing_with_chaining
https://github.com/nickklos10/hashing_with_chaining
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nickklos10/hashing_with_chaining
- Owner: nickklos10
- Created: 2023-07-28T20:15:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T17:42:33.000Z (about 1 year ago)
- Last Synced: 2025-01-18T02:27:56.377Z (4 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hashing with Chaining
In this lab, I implemented a hash table using the chaining method. This technique resolves collisions by adding a new node to a linked list at the hashed index. The code provided demonstrates how to parse records from a file, insert them into a hash table, and display the contents of the hash table.