Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Standard C++ Library Module User's Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

8.1 The map Data Abstraction

A map is an indexed data structure, similar to a vector or a deque. However, a map differs from a vector or deque in two important respects:

In other programming languages, a map-like data structure is sometimes referred to as a dictionary, a table, or an associative array. In the Standard C++ Library, there are two varieties of maps:

Both data structures provide relatively fast insertion, deletion, and access operations in logarithmic time.

8.1.1 Include files

Whenever you use a map or a multimap, you must include the map header file.



Previous fileTop of DocumentContentsIndex pageNext file

Copyright (c) 1994-2006 Rogue Wave Software, a Quovadx Division.
Licensed under the Apache License, Version 2.0.
Contact Rogue Wave about documentation or support issues. You can also seek help from other developers through the Apache stdcxx community (see below).

For more information on the Rogue Wave Standard C++ Library under open source, see Section 1.2.