Popular data structures and algorithms implemented in C++.
- Root contains all folders named according to either the data structure they implement or the algorithm.
- In order to test any data structure or algorithm:
cd <folder_name>- eg:
cd ./LinkedLists - Run command
make - This will execute the Makefile which will compile the CPP files and automatically run the executable after compilation.
- If you would like to play around with the code, main.cpp can be edited as per your requirements.
- All data structure/algorithm implementations are in their respective .cpp files inside the include folder.
- By default, this Makefile is using clang compiler. In case you have GCC, just replace CXX variable in the Makefile to the one your system has, in this case GCC.