c++ 在std::unordered_map中,如何遍历散列?

aydmsdu9  于 2023-11-19  发布在  其他
关注(0)|答案(1)|浏览(132)

std::unordered_map中的每个键都有一个hash-value。如何获得这些hash-value?
干什么?为了评估哈希函数与数据集的相关性,我可以从外部生成哈希函数,但我可能无法访问所使用的哈希函数。

yyhrrdl8

yyhrrdl81#

  • “我可能无法访问使用的哈希函数。"*

可以访问所使用的哈希函数:

  1. #include <unordered_map>
  2. #include <iostream>
  3. int main()
  4. {
  5. const std::unordered_map<int, int> my_map = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
  6. const auto hasher{ my_map.hash_function() };
  7. for (const auto& [key, value] : my_map) { // Structured bindings were introduced in C++17
  8. const auto hash_value = hasher(key);
  9. std::cout << "(h: " << hash_value << ", k: " << key << ", v: " << value << ") ";
  10. }
  11. std::cout << std::endl;
  12. }

字符串
Demo

  • “评估散列函数与数据集的相关性。"*

可以通过向Hash的构造函数传递不同的Hash类来为std::unordered_map提供自定义哈希函数。

展开查看全部

相关问题