I have forgotten
my Password

Or login with:

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

Associative

Overview

An Associative Container is a container with a variable size and where elements are inserted in a pre-defined order (such as sorted ascending).

Section Pages

Map

Map and multimap containers are containers that manage key/value pairs as elements.

Multimap

Map and multimap containers are containers that manage key/value pairs as elements.

Set

A set is an associative container data structure which contains a sorted set of unique objects.

Multiset

A multiset is an associative container with the same properties as a set,but allowing storage of duplicate keys.

Hash Map

Hash map helps to manage a sequence of elements as a hash table

Hash Multimap

Hash multimap is a hash map that can contain multiple for a same key

Hash Set

Hash set is a set that uses a hash table to provide faster searching functionnality

Hash Multiset

Hash multiset is a hash set that can contain multiple identical values