Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/emperoryp7/data-structures

C++ Custom Template Library
https://github.com/emperoryp7/data-structures

cpp data-structures

Last synced: about 1 month ago
JSON representation

C++ Custom Template Library

Awesome Lists containing this project

README

        

# Custom Data Structures

This repository contains custom data structures implemented in C++17.
Although there might be no realworld use of this, but this serves as a way for me
to take a deeper dive into various data structures and concepts like
iterators and memory optimizations.

Libraries can be found in `/src/headers`.

# How to run

```bash
mkdir build
cd build
cmake ..
cmake --build . --config Debug --target all -j 10 --
./src/test
```