Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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++

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/)