Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ombhd/ft_containers_42
C++ containers in easy mode: reimplementation of vector, stack and map containers of STL in C++
https://github.com/ombhd/ft_containers_42
1337school 42born2code cpp data-structures stl-containers
Last synced: 22 days ago
JSON representation
C++ containers in easy mode: reimplementation of vector, stack and map containers of STL in C++
- Host: GitHub
- URL: https://github.com/ombhd/ft_containers_42
- Owner: ombhd
- Created: 2021-09-06T13:45:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-11T10:10:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-25T04:07:18.995Z (2 months ago)
- Topics: 1337school, 42born2code, cpp, data-structures, stl-containers
- Language: C++
- Homepage:
- Size: 1.97 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ft_containers
> The multiple available containers in C++ all have very different usage.
To make sure you understand them, let’s re-implement them!## Contributor
- Omar BOUYKOURNE @ombhd : 42 username => `obouykou`## Subject
[ft_containers subject](https://github.com/ombhd/ft_containers_42/blob/main/ft_containers.en.subject.pdf)
## Some Useful Sources :
- [Standard Containers in C++ Reference](http://www.cplusplus.com/reference/stl/?kw=stl)
- [STL C++ Reference book](https://www.cppreference.com/Cpp_STL_ReferenceManual.pdf)
- [Data Structures (including Arrays and Trees)](https://algorithmtutor.com/Data-Structures/)
- [Binary Search Trees](https://www.cs.odu.edu/~zeil/cs361/sum18/Public/bst/index.html)
- [Writing a custom iterator in modern C++](https://internalpointers.com/post/writing-custom-iterators-modern-cpp)
- [Delete a node from Binary Search Tree](https://www.youtube.com/watch?v=gcULXE7ViZw)
- [Delete a Tree (remove all its nodes)](https://www.geeksforgeeks.org/write-a-c-program-to-delete-a-tree/)