Study project on algorithm design and implementation in C++.
See the Problems List Here.
- C++ compiler with C++17 support;
- CMake.
- Clone the repository and open the project directory:
git clone https://github.com/BiagioFesta/algorithms.git
cd algorithms
- Create a build directory (linux commands):
cmake -E make_directory build
cd build
- Generate compilation files:
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DBUILD_BENCHMARKS=ON ..
- Run compilation:
cmake --build . --config Release