Data structures in C++ from scratch.
It is a project for the Programming and Data Structure subject at the University of Alicante.
A calendar object tcalendario is used as the item of these data structures:
- Vector : tvectorcalendario.
- List : tlistacalendario.
- Binary Search Tree : tabbcalendario.
- AVL Tree : tavlcalendario.
evalua.sh is a script developed for Linux to run tests.
Is platform independent. makefile developed for Linux.
There is an example in src/main.cpp.
# Build with make
make #make clean to remove binaries
# Build without make
g++ -w -O3 -Iinclude lib/* src/main.cpp -o main
# Run main
./main
Author:
Javier Mellado Sánchez
2021