linux hash_map的使用(g++)

简单的使用下:

#include 
#include 
using namespace __gnu_cxx;

int main(int argc, char** argv)
{
  hash_map hm;
  hm.insert(pair(1, 23));
  hash_map::iterator it;
  it = hm.find(1);
  hm.erase(it);

  return 0;
}

如果你希望在hash中使用std::string就需要多做一点点;你需要自己加上这段代码;

#include 
using namespace __gnu_cxx;

namespace __gnu_cxx
{
  template<> struct hash
  {
     size_t operator()(const string& s) const
    {
       return __stl_hash_string(s.c_str());
    }
   };
}

int main(int argc, char** argv)
{
  hash_map hm;
  hm.insert(pair(string("aaa"), 123));
  //其他操作

  return 0;
}



你可能感兴趣的:(C,/C++编程学习)