Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zank613/structures_quick

Common data structure implementations in C
https://github.com/zank613/structures_quick

c99 cprogramming-language data-structures

Last synced: about 10 hours ago
JSON representation

Common data structure implementations in C

Awesome Lists containing this project

README

        

# A quick look at common data structures in C99

## [Arrays](https://github.com/Zank613/structures_quick/tree/master/arrays)

## [Linked List](https://github.com/Zank613/structures_quick/tree/master/linked_list)

## [Stack](https://github.com/Zank613/structures_quick/tree/master/stack)

## [Queue](https://github.com/Zank613/structures_quick/tree/master/queue)

## [Binary Tree](https://github.com/Zank613/structures_quick/tree/master/binary_tree)

# Disclaimer
- I am a basic programmer, and the code provided here represents first-thought implementations. These examples are not designed to be efficient or to provide a complete set of operations. They are intended for educational
purposes and may not adhere to best practices or optimization standards. Use and modify the code at your own discretion.