Ecosyste.ms: Awesome
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: 2 days ago
JSON representation
Implementation of STL containers — map, set, vector, stack on C++
- Host: GitHub
- URL: https://github.com/taisiabarteneva/stl_containers
- Owner: taisiabarteneva
- Created: 2022-06-26T20:11:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-07T18:49:48.000Z (about 2 years ago)
- Last Synced: 2023-03-10T09:46:45.245Z (over 1 year ago)
- Topics: cpp
- Language: C++
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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