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

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

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)