In this repository I implement some data structures libraries in C. Due to the C language limitations (a.k.a. my own skill issues 💀) most of the implementations, if not all, only support the double C type. Most of this code isn't really of much use but feel free to do so and please let me know if you did :D.
A simple implementation of a linked list that I built prior to the making of this repository as a way to study and better consolidate my C programming skills. It's probably not even a good implementation, but I have decided to left it like this for now. Finished around 2023's summer and haven't touched on it ever since.
A vector (redimensionable array) implementation. This vector doesn't use a circular buffer so it's queue-like performace is probably questionable.