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

Sources:

  1. https://learn.microsoft.com/en-us/cpp/cppcx/collections-c-cx?view=msvc-170