STL containers (vector, map, stack) in
C++ compiler
GNU Make
Clone repository:
git clone https://github.com/shuygena/ft_containers containers
Go to directory:
cd containers
For compile program run:
make
Launch it with:
./container
You can also write your own tests.
The commented code is intended for printing a tree. Functions in file headers/rb_tree.hpp:
void printTree();
void printBT(const std::string& prefix, const node<value_type>* nodeV, bool isLeft) const
Thanks Asem for this awesome code ❤️