标签: c++
我想读取一个整数数组,散列每个整数并将其放入哈希表中,然后查找表以搜索该值。在c / c ++中有效的方法是什么?提前致谢
答案 0 :(得分:4)
如果您的编译器支持它,您可以使用std::unordered_set。如果您的编译器还不支持,那么大多数实现都支持hash_set(well documented in the SGI STL documentation)。
std::unordered_set
hash_set