Data Structures Flashcards
1
Q
STL?
A
Standard Template Library, It provides us with implementation of various Data structures like: priority_queue, set, map….
It also provies iterators and functors that make it easier to work with these data structures.
2
Q
Components of STL
A
4
1. Containers
2. Algorithms
3. Iterators
4. Functors
3
Q
Containers
A
Containers are the data structures that are used to store data. They are implemented as class and have methods defined that operates on them.
4 types:
- Sequence Containers
- Container Adaptor
- Associative Containers
- Unordered Associative Containers
4
Q
A