/Containers

Implementation of container types of the C++ standard template library :paperclip:

Primary LanguageC++

Containers

Implementation of container types of the C++ standard template library.
➜ cppreference page

  • vector
    templates dynamic memory reallocation
    iterator system

  • stack
    based on vector

  • map / set
    based on dynamic structure - tree pair structure
    tree iterator system

  • tree
    insertion deletion find visualization

Useful links