Libray of Custom Data Structures and Algorithm Implementations in C
- Dynamic Array
- Singly Linked List
- Stack
- Queue
- Bubble Sort
- Insertion Sort
- Selection Sort
- Merge Sort
- CMake 3.20
- GNU Make 4.4.1
- GCC 13.1.0
With admin privileges:
mkdir build
cd build
cmake ..
make
make install
find_package(dsa REQUIRED)
target_link_libraries(<project_name> PRIVATE dsa::dsa)
#include <ds/darray.h>
#inlcude <algos/mergeSort.h>