https://github.com/raeid-u/dynamic_array
simple dynamic array implementation in C... because I can
https://github.com/raeid-u/dynamic_array
c dynamic-array makefile
Last synced: 11 days ago
JSON representation
simple dynamic array implementation in C... because I can
- Host: GitHub
- URL: https://github.com/raeid-u/dynamic_array
- Owner: Raeid-U
- Created: 2025-07-31T00:29:40.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-09-06T15:39:23.000Z (2 months ago)
- Last Synced: 2025-09-06T17:37:52.364Z (2 months ago)
- Topics: c, dynamic-array, makefile
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dynamic Array Implementation
Simple dynamic array implementation in C by Raeid.
This is a simple exercise I completed in preparation for my [CS 136](https://student.cs.uwaterloo.ca/~cs136/current/) exam at uWaterloo.
## Features
- Opaque data structure
- User is responsible for managing memory
- Dynamic Arrays are self-optimizing
- Makes use of [`lumber.h`](https://github.com/Raeid-U/lumber), another project by Raeid-U for logging in C
---
## Project Structure
```
./
├── da.h
├── da.c
├── lumber.h
├── main.c // implementaion testing file
├── Makefile
├── .gitignore
└── README.md
```
---
## Notes
- This is not intended to be used in anything serious
- Only meant to be an experiment to test my skills
- Feel free to use it, modify it, or take inspiration from it to further your own learning