Skip to content

algos-all/algos-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published