Skip to content

Implementation of Standard Template libraries (STL) #54

@Iltwats

Description

@Iltwats

Give Implementation for the following STLs:--

  1. Sequence Containers: implement data structures which can be accessed in a sequential manner.
  • vector
  • list
  • deque
  • arrays
  • forward_list( Introduced in C++11)
  1. Container Adaptors : provide a different interface for sequential containers.
  • queue
  • priority_queue
  • stack
  1. Associative Containers : implement sorted data structures that can be quickly searched (O(log n) complexity).
  • set
  • multiset
  • map
  • multimap
  1. Unordered Associative Containers : implement unordered data structures that can be quickly searched
  • unordered_set (Introduced in C++11)
  • unordered_multiset (Introduced in C++11)
  • unordered_map (Introduced in C++11)
  • unordered_multimap (Introduced in C++11)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions