Skip to content

sumantmani/cpp14-stl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CPP Standard Template Library Implementation

A Collections of C++ STL Implementation (pseudo code).

Table of Contents


Containers Library

A Container is an object used to store objects and taking care of management of the memory used by the objects it contains.

  • Sequence container

    • array
    • vector
    • deque
    • forword_list
    • list
  • Container adaptors

    • stack
    • queue
    • priority_queue
  • Associative containers

    • set
    • multiset
    • map
    • multimap
  • Unordered associative continers

    • unordered_set
    • unordered_multiset
    • unordered_map
    • unordered_multimap

Contribution

Feel free to submit pull request to help:

  • Improve sections
  • Add new sections
  • Other bugs

Authors

Credits

Resource:

License

Copyright © 2018 Sumant Mani

License: GPL-3.0

Releases

No releases published

Packages

No packages published

Languages