Collections - RJAE5/2143-OOP GitHub Wiki
Collections
In C++, collections refer to the broad list of data structures that store and organize data. The Standard Template Library (STL) provides a set of predefined collection types, including:
- Containers
- Vectors
- Linked Lists
- Maps
- Iterators
- Algorithms
Important Notes
- Collections generally allow programmers to manage data efficiently
- Fast access, frequent insertions, and ordered data are all perks of using STL collections