| | | | | |

Sequential Containers

  • A Generic pContainer C
  • Organized and Accessible Sequentially (first, second, ..., last)
    • Sufficient: either PushFront()/PopFront()/Front() or PushBack()/PopBack()/Back()
    • Examples: vector, list, deque
  • "sContainer" for short

| | Top of Page | 1. Positional Containers - 3 of 23