I am looking for a template for hash map that i can rely on, and use whenever i need hash table. I was trying to use hash_map but found out that it is deprecated now.Tried using unordered_map, but i get the following error-
error: #error This file requires compiler and library support for the upcoming ISO C++ s tandard, C++0x. This support is currently experimental, and must be enabled with the -s td=c++0x or -std=gnu++0x compiler options.
Now, i am completely confused. I have been using hashmap in java, and it was pleasantly straight forward. It is not so in c++. Guide me on what to use and how to use a hash table in c++.
