Skip to content

BiagioFesta/algorithms

Repository files navigation

Algorithms

Algorithms Test Build codecov cppstd

Brief Description

Study project on algorithm design and implementation in C++.

Problem List

See the Problems List Here.

How To Compile It

Requirements

  • C++ compiler with C++17 support;
  • CMake.

Commands

  • 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