Copyright ? 2003, 2004 Jeremy B. Maitin-Shepard Copyright ? 2005-2008 Daniel James Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt Table of Contents
For accessing data based on key lookup, the C++ standard library offers Also, the existing containers require a 'less than' comparison object to order their elements. For some data types this is impossible to implement or isn't practical. In contrast, a hash table only needs an equality function and a hash function for the key. With this in mind, the C++ Standard Library Technical Report introduced the unordered associative containers, which are implemented using hash tables, and they have now been added to the Working Draft of the C++ Standard. This library supplies an almost complete implementation of the specification in the Working Draft of the C++ Standard.
namespace boost { template < class Key, class Hash =
namespace boost { template < class Key, class Mapped, class Hash =
When using Boost.TR1, these classes are included from The containers are used in a similar manner to the normal associative containers:
typedef boost::unordered_map<std::string, int> map; map x; x["one"] = 1; x["two"] = 2; x["three"] = 3; assert(x.at("one") == 1); assert(x.find("missing") == x.end());
But since the elements aren't ordered, the output of:
BOOST_FOREACH(map::value_type i, x) { std::cout<<i.first<<","<<i.second<<"\n"; }
can be in any order. For example, it might be: two,2 one,1 three,3
To store an object in an unordered associative container requires both an key
equality function and a hash function. The default function objects in the
standard containers support a few basic types including integer types, floating
point types, pointer types, and the standard strings. Since Boost.Unordered
uses There are other differences, which are listed in the Comparison with Associative Containers section.
|