Skip to content

mli42/at42ft_containers

Repository files navigation

at42ft_containers

Reimplement some containers of the STL (vector, list, map, stack, queue && their iterators, const_iterators, reverse_iterators) [C++98]

What is a container ?

A container is a holder object that stores a collection of other objects (its elements).
They are implemented as class templates, which allows a great flexibility in the types supported as elements.

The container manages the storage space for its elements and provides member functions to access them,
either directly or through iterators (reference objects with similar properties to pointers).

Abstraction in C++:

Data abstraction is one of the most essential and important feature of object oriented programming in C++.
Abstraction means displaying only essential information and hiding the details.
Data abstraction refers to providing only essential information about the data to the outside world,
hiding the background details or implementation.

So, what are these containers abstracting?

- vector: Dynamic contiguous array
- list: Circular double linked list
- map: Binary Search Tree of key-value pairs, sorted by unique keys.
- stack: Adapts a container to provide stack (LIFO - Last In First Out)
- queue: Adapts a container to provide queue (FIFO - First In First Out)

Btw, I made my own tester 🥳 : https://github.com/mli42/containers_test

Tips for this project

My recommended order: vector > list > map > stack/queue

You should make a spreadsheet with a color-code with every method you have to do in every containers, gathering methods:

  • to do (white),
  • implemented (light green),
  • tested (darker green),
  • does not exist (dark grey)

Don't be afraid to spend time on iterators


About

Reimplement some containers from the STL (vector, list, map, stack, queue && their iterators, const_iterators, reverse_iterators) [C++]

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published