]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/hashmap.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxHashMap
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 This is a simple, type-safe, and reasonably efficient hash map class,
13 whose interface is a subset of the interface of STL containers.
14 In particular, the interface is modeled after std::map, and the various,
15 non-standard, std::hash_map (http://www.cppreference.com/wiki/stl/map/start).
19 class MyClass { ... };
21 // declare a hash map with string keys and int values
22 WX_DECLARE_STRING_HASH_MAP( int, MyHash5 );
23 // same, with int keys and MyClass* values
24 WX_DECLARE_HASH_MAP( int, MyClass*, wxIntegerHash, wxIntegerEqual, MyHash1 );
25 // same, with wxString keys and int values
26 WX_DECLARE_STRING_HASH_MAP( int, MyHash3 );
27 // same, with wxString keys and values
28 WX_DECLARE_STRING_HASH_MAP( wxString, MyHash2 );
33 // store and retrieve values
34 h1[1] = new MyClass( 1 );
36 h1[50000] = new MyClass( 2 );
38 wxString tmp = h2["Bill"];
39 // since element with key "Joe" is not present, this will return
40 // the default value, which is an empty string in the case of wxString
41 MyClass tmp2 = h2["Joe"];
43 // iterate over all the elements in the class
45 for( it = h2.begin(); it != h2.end(); ++it )
47 wxString key = it->first, value = it->second;
48 // do something useful with key and value
53 @section hashmap_declaringnew Declaring new hash table types
56 WX_DECLARE_STRING_HASH_MAP( VALUE_T, // type of the values
57 CLASSNAME ); // name of the class
59 Declares a hash map class named CLASSNAME, with wxString keys and VALUE_T values.
62 WX_DECLARE_VOIDPTR_HASH_MAP( VALUE_T, // type of the values
63 CLASSNAME ); // name of the class
65 Declares a hash map class named CLASSNAME, with void* keys and VALUE_T values.
68 WX_DECLARE_HASH_MAP( KEY_T, // type of the keys
69 VALUE_T, // type of the values
71 KEY_EQ_T, // key equality predicate
72 CLASSNAME); // name of the class
74 The HASH_T and KEY_EQ_T are the types used for the hashing function and
75 key comparison. wxWidgets provides three predefined hashing functions:
76 @c wxIntegerHash for integer types ( int, long, short, and their unsigned counterparts ),
77 @c wxStringHash for strings ( wxString, wxChar*, char* ), and @c wxPointerHash for
79 Similarly three equality predicates: @c wxIntegerEqual, @c wxStringEqual,
80 @c wxPointerEqual are provided.
81 Using this you could declare a hash map mapping int values to wxString like this:
84 WX_DECLARE_HASH_MAP( int,
90 // using an user-defined class for keys
99 unsigned long operator()( const MyKey& k ) const
104 MyKeyHash& operator=(const MyKeyHash&) { return *this; }
107 // comparison operator
112 bool operator()( const MyKey& a, const MyKey& b ) const
114 // compare for equality
117 MyKeyEqual& operator=(const MyKeyEqual&) { return *this; }
120 WX_DECLARE_HASH_MAP( MyKey, // type of the keys
121 SOME_TYPE, // any type you like
123 MyKeyEqual, // key equality predicate
124 CLASSNAME); // name of the class
128 @section hashmap_types Types
130 In the documentation below you should replace wxHashMap with the name you used
131 in the class declaration.
133 - wxHashMap::key_type: Type of the hash keys.
134 - wxHashMap::mapped_type: Type of the values stored in the hash map.
135 - wxHashMap::value_type: Equivalent to struct { key_type first; mapped_type second }.
136 - wxHashMap::iterator: Used to enumerate all the elements in a hash map;
137 it is similar to a value_type*.
138 - wxHashMap::const_iterator: Used to enumerate all the elements in a constant
139 hash map; it is similar to a const value_type*.
140 - wxHashMap::size_type: Used for sizes.
141 - wxHashMap::Insert_Result: The return value for insert().
144 @section hashmap_iter Iterators
146 An iterator is similar to a pointer, and so you can use the usual pointer operations:
147 ++it ( and it++ ) to move to the next element, *it to access the element pointed to,
148 it->first ( it->second ) to access the key ( value ) of the element pointed to.
150 Hash maps provide forward only iterators, this means that you can't use --it,
154 @section hashmap_predef Predefined hashmap types
156 wxWidgets defines the following hashmap types:
157 - wxLongToLongHashMap (uses long both for keys and values)
158 - wxStringToStringHashMap (uses wxString both for keys and values)
162 @category{containers}
168 The size parameter is just a hint, the table will resize automatically
169 to preserve performance.
171 wxHashMap(size_type size
= 10);
176 wxHashMap(const wxHashMap
& map
);
180 Returns an iterator pointing at the first element of the hash map.
181 Please remember that hash maps do not guarantee ordering.
183 const_iterator
begin() const;
188 Removes all elements from the hash map.
193 Counts the number of elements with the given key present in the map.
194 This function returns only 0 or 1.
196 size_type
count(const key_type
& key
) const;
199 Returns @true if the hash map does not contain any elements, @false otherwise.
205 Returns an iterator pointing at the one-after-the-last element of the hash map.
206 Please remember that hash maps do not guarantee ordering.
208 const_iterator
end() const;
214 Erases the element with the given key, and returns the number of elements
215 erased (either 0 or 1).
217 size_type
erase(const key_type
& key
);
220 Erases the element pointed to by the iterator. After the deletion
221 the iterator is no longer valid and must not be used.
223 void erase(iterator it
);
224 void erase(const_iterator it
);
229 If an element with the given key is present, the functions returns an
230 iterator pointing at that element, otherwise an invalid iterator is
234 hashmap.find( non_existent_key ) == hashmap.end()
237 iterator
find(const key_type
& key
) const;
238 const_iterator
find(const key_type
& key
) const;
242 Inserts the given value in the hash map.
243 The return value is equivalent to a
244 @code std::pair<wxHashMap::iterator, bool> @endcode
245 The iterator points to the inserted element, the boolean value is @true
246 if @a v was actually inserted.
248 Insert_Result
insert(const value_type
& v
);
251 Use the key as an array subscript.
252 The only difference is that if the given key is not present in the hash map,
253 an element with the default @c value_type() is inserted in the table.
255 mapped_type
operator[](const key_type
& key
);
258 Returns the number of elements in the map.
260 size_type
size() const;