{"id":26771978,"url":"https://github.com/voltamon/doubly-linked-lists-with-hash-table-in-c","last_synced_at":"2025-10-04T07:58:27.667Z","repository":{"id":282513289,"uuid":"948842707","full_name":"Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C","owner":"Voltamon","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-16T16:04:23.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T00:36:45.927Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Voltamon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-15T04:37:16.000Z","updated_at":"2025-03-16T18:58:44.000Z","dependencies_parsed_at":"2025-03-15T05:24:56.645Z","dependency_job_id":"689596b1-9afd-4fad-9ab0-3cc9c4a3f799","html_url":"https://github.com/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C","commit_stats":null,"previous_names":["voltamon/doubly-linked-lists-with-hash-table-in-c"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voltamon%2FDoubly-Linked-Lists-with-Hash-Table-in-C","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voltamon%2FDoubly-Linked-Lists-with-Hash-Table-in-C/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voltamon%2FDoubly-Linked-Lists-with-Hash-Table-in-C/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voltamon%2FDoubly-Linked-Lists-with-Hash-Table-in-C/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Voltamon","download_url":"https://codeload.github.com/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voltamon%2FDoubly-Linked-Lists-with-Hash-Table-in-C/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278283509,"owners_count":25961311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-29T00:36:57.345Z","updated_at":"2025-10-04T07:58:27.652Z","avatar_url":"https://github.com/Voltamon.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003ch1\u003eDoubly Linked Lists with Hash Table\u003c/h1\u003e\n    \u003cp\u003eThis is just an implementation of dounly linked lists and hash tables. I have used a chaining mechanism to resolve collisions in my hash function. \n    \n  [DISCLAIMER] I am still learning C. Code can be improved. This is just how I chose to implement it.\u003c/p\u003e\n\n  \u003ch2\u003eGetting Started\u003c/h2\u003e\n    \u003cp\u003eTo set up the project, follow these steps:\u003c/p\u003e\n    \u003col\u003e\n        \u003cli\u003eEnsure you have GCC compiler installed on your machine. If not, you can install it from \u003ca href=\"https://gcc.gnu.org/install/download.html\"\u003egcc.gnu.org\u003c/a\u003e.\u003c/li\u003e\n        \u003cli\u003eClone this repository:\u003c/li\u003e\n        \u003cpre\u003e\u003ccode\u003egit clone https://github.com/Voltamon/Doubly-Linked-Lists-with-Hash-Table-in-C.git\u003c/code\u003e\u003c/pre\u003e\n        \u003cli\u003eNavigate into the project directory:\u003c/li\u003e\n        \u003cpre\u003e\u003ccode\u003ecd #directory-name#\u003c/code\u003e\u003c/pre\u003e\n        \u003cli\u003eCompile and run the project:\u003c/li\u003e\n        \u003cpre\u003e\u003ccode\u003egcc -g data_structure.c -o data_structure.exe \u0026\u0026 .\\data_structure.exe\u003c/code\u003e\u003c/pre\u003e\n    \u003c/ol\u003e\n\u003c/body\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltamon%2Fdoubly-linked-lists-with-hash-table-in-c","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoltamon%2Fdoubly-linked-lists-with-hash-table-in-c","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltamon%2Fdoubly-linked-lists-with-hash-table-in-c/lists"}