GCC中使用hash_map_学着站在巨人的肩膀上_百度空间
GCC中使用hash_map
Using hash_map on GCCIf you have tried to use some STL containers with GCC, such as hash_map:
// error: hash_map: No such file or directory
#include <hash_map>
int main()
{
// error: ‘hash_map’ is not a member of ‘std’
std::hash_map<int,int> hm;
return 0;
}