https://github.com/bragdond/dynamic-array-c
short library to handle c dynamic array
https://github.com/bragdond/dynamic-array-c
array c data-structures dynamic-array
Last synced: 2 months ago
JSON representation
short library to handle c dynamic array
- Host: GitHub
- URL: https://github.com/bragdond/dynamic-array-c
- Owner: BragdonD
- Created: 2022-09-27T02:58:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-24T00:57:35.000Z (over 2 years ago)
- Last Synced: 2025-01-26T14:13:20.343Z (4 months ago)
- Topics: array, c, data-structures, dynamic-array
- Language: C
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dynamic-array-c
This repository was made for an exercice in Data Structures courses at Ajou University in 2022. The goal of the exercice was to implement a basic structure to represent an array of element. The array need to be able to grow and shrink.## Folder-organisation
In the inc folder you will find the header for each files In the src folder you will find the implementation of all the function. I divided the project in two parts, the first part is about the array. The second part is about the user's interface.
## How to use it
First you will need to build the project, the makefile is provided with the program, so you just need to enter the following command at the racine of the workspace folder: mingw32-make. Ok so now, you have build the project, (the makefile is setup to compile the program for debug mode) you can now run the program by running the following once again at the racine of the workspace folder : .\bin\main.
In the program, you will be able to use multiple commands. They will be presented to you by a menu when the program is running.
## Warning
Please do not create the bin and obj folder. They will be created by the makefile. Plus do not touch to the created files inside those two folders.