HASH TABLE C++ STL

In gcc 4.3.2, how can STL help in creating a hash table?

In gcc 4.3.2, You can use unordered_map to implement a hash table using stl. For reference of unordered_map, you may look at the following link : http://www.cplusplus.com/reference/unordered_map/unordered_map/

1 Like

I code in DEV C++ 5.8.3. There is no unordred_map in its STL. What to do in this case?