An open API service indexing awesome lists of open source software.

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

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:



  1. Ensure you have GCC compiler installed on your machine. If not, you can install it from gcc.gnu.org.

  2. Clone this repository:

  3. git clone https://github.com/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C.git

  4. Navigate into the project directory:

  5. cd #directory-name#

  6. Compile and run the project:

  7. gcc -g data_structure.c -o data_structure.exe && .\data_structure.exe