Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 608 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 608 Bytes

Classic CS Algorithms in CPP

Build Status

How to set up?

First, install the conan package manager for your system. Then build and run the unit tests like so:

mkdir build && cd build
conan install .. && cmake ..
ctest

Unit tests are written with Boost.Test library. To run a specific test unit, say binary search tests, drop the test_ and run:

ctest --verbose -R binsearch

Alternatively, run the file directly:

./tests/test_binsearch