Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 591 Bytes

File metadata and controls

19 lines (17 loc) · 591 Bytes

DataStructures

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.

Configure project

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 ..

BST

In order to run Binary Search Tree examples run:

  • cd build
  • make BST (launches example)
  • make BST_test (launches example tests)

BST docs