I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
ComputingStlContainers

Sequences

Introduction

Sequence Containers refer to a group of container class templates that implement storage of data elements. The elements are arranged in a strict linear order and it supports insertion and removal of elements.

Section Pages

Vector

A random access dynamic container

List

A sequence that supports both forward and backward traversal and insertion of elements to the front or back of the list in constant time

Deque

A deque is a container class template that implements a double-ended queue.

Bit Vector

A bit_vector is more like a vector < bool >

Slist

An slist is a singly linked list