Skip to content

Basic algorithms and data structures implementation using c++

License

Notifications You must be signed in to change notification settings

kuntalghosh/cpp-basic-libs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cpp-basic-libs

This repository contains the implementations of basic data structures and algorithms using c++. To build this project, you need CMake installed in your system. You can download it for free from here http://www.cmake.org/.

Algorithms:

  • Concurrent queues

It is always recommended to build the project in a different directory from the source. Followings are the instructions to build the project.

mkdir build       # Create a directory to hold the build output.
cd build
cmake ..
make all

Please note that the above build folder should be added in .gitignore file so that we don't accidentally add the contents of this folder in the git commit.

After building the tests, you can run the tests by using the following commands:

make test

You can also perform the tests by executing the following command:

make check

About

Basic algorithms and data structures implementation using c++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published