Boost:Unordered Example #include <boost/unordered_map.hpp> // ... typedef boost::unordered_map<std::string, int> map; map x; x["one"] = 1; x["two"] = 2; x["three"] = 3; assert(x.at("one") == 1); assert(x.find("missing") == x.end()); Favorite site Class template unordered_map C++ unordered_map boost::ptr_unordered_map Boost 로 C++0x의 라이브러리 「TR1」을 미리 사용 해 보 자 (5): unordered containers