An open API service indexing awesome lists of open source software.

https://github.com/taisiabarteneva/stl_containers

Implementation of STL containers — map, set, vector, stack on C++
https://github.com/taisiabarteneva/stl_containers

cpp

Last synced: 8 days ago
JSON representation

Implementation of STL containers — map, set, vector, stack on C++

Awesome Lists containing this project

README

          

# stl_containers

School42 project. Implementation of C++98 standard template library's containers

See `subject.pdf` in the root of repository for more detailed info about the project

## Containers
- vector with basic / strong exception safety
- stack based on vector, compatible with std::deque and std::list
- map & set based on red-black tree template class

## Utils
- enable_if
- iterator_traits
- reverse iterator
- lexicographical compare, equal
- is_integral
- pair, make pair