https://github.com/voltamon/doubly-linked-lists-with-hash-table-in-c
https://github.com/voltamon/doubly-linked-lists-with-hash-table-in-c
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/voltamon/doubly-linked-lists-with-hash-table-in-c
- Owner: Voltamon
- License: mit
- Created: 2025-03-15T04:37:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-16T16:04:23.000Z (about 1 year ago)
- Last Synced: 2025-03-29T00:36:45.927Z (about 1 year ago)
- Language: C
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Doubly Linked Lists with Hash Table
This is just an implementation of dounly linked lists and hash tables. I have used a chaining mechanism to resolve collisions in my hash function.
[DISCLAIMER] I am still learning C. Code can be improved. This is just how I chose to implement it.
Getting Started
To set up the project, follow these steps:
- Ensure you have GCC compiler installed on your machine. If not, you can install it from gcc.gnu.org.
- Clone this repository:
git clone https://github.com/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C.git
- Navigate into the project directory:
cd #directory-name#
- Compile and run the project:
gcc -g data_structure.c -o data_structure.exe && .\data_structure.exe