Skip to content
/ DSA Public

DSA++ is a library implementing a range of data structures and algorithms in C++.

Notifications You must be signed in to change notification settings

steveneale/DSA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSA++

DSA++ is a library implementing a range of data structures and algorithms in C++. The library currently contains implementations of the following algorithms:

  • Sorting
    • Insertion sort

Package structure

├── CMakeLists.txt
├── README.md
├── include
│   └── DSA++
│       └── arrays
│           └── sorting.hpp
└── src
    ├── arrays
    │   └── sorting.cpp
    └── example.cpp

Building the library

DSA++ includes a CMakeLists.txt file, allowing it to be built using cmake. To do so, navigate to the library's root directory in a terminal and type:

cmake .

This will create a Makefile (among other files). Then, the library can be built by simply typing:

make

The example.out file will now be present in the root directory, and can be run to see examples of the algorithms in action:

./example.out

About

DSA++ is a library implementing a range of data structures and algorithms in C++.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published