This repository contains my implementations of data structures in C++.
Each data structure has it's own short readme describing the features implemented with it's complexities.
This project requires C++20, you have to make sure your compiler supports it before configuring.
Before you start experimenting with examples:
mkdir build
cd build
cmake ..In order to run Binary Search Tree examples run:
cd buildmake BST(launches example)make BST_test(launches example tests)