Re-implementation of some c++ containers.
- Status: finished
- Result: 125%
- Observations: the standard used is
c++98
,map
andset
use a red-black tree.
- c++98 stack
- c++98 vector
- c++98 map
- c++98 set
- Clone repo and include the
.hpp
of the container you want to use:
#include "vector.hpp"
// your code
-
Use them like you would use the original STL Containers.
-
Enjoy! 😁