https://github.com/raulpy271/data-structures
Implementing some data-structures in C language
https://github.com/raulpy271/data-structures
array c-language c-programming computer-science data-structures linked-list queue stack
Last synced: 4 months ago
JSON representation
Implementing some data-structures in C language
- Host: GitHub
- URL: https://github.com/raulpy271/data-structures
- Owner: raulpy271
- License: mit
- Created: 2021-07-18T18:38:08.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T13:11:38.000Z (almost 2 years ago)
- Last Synced: 2023-12-15T14:28:49.480Z (almost 2 years ago)
- Topics: array, c-language, c-programming, computer-science, data-structures, linked-list, queue, stack
- Language: C
- Homepage:
- Size: 46.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Implementing data-structures in C language
These repository implements some of these datatypes:
- [Stack using linked list](/stack_example.c)
- [Priority queue](/priority_queue_example.c)
- [Doubly linked list](/doubly_linked_list_example.c)
- [hash table](/hash_table_example.c)