This repository consists of exercises containing algorithm and data structure examples. Exercises are based on 'Mastering Data Structures & Algorithms using C and C++', Created by Abdul Bari.
Resources::
Disclaimer: I do not have any relation with the original author of the course or the course it self.
Prerequisite is to have g++ with the c++20 standard installed and CMake with minimum version 3.15.
Build exercises with the following command:
g++ -std=c++20 -o <exercise_name>.exe <exercise_folder>/<exercise_name>.cpp
Build exercises that require cmake with the following commands:
cd ./<Exercise_folder>/
mkdir build
cd build
cmake ..