C++ STL中的unordered_multimap hash_function()

C++ STL中的unordered_multimap hash_function()

在C++ STL中, unordered_multimap::hash_function() 是一个内置的函数,用于获取哈希函数。这个哈希函数是一个一元函数,仅接受一个参数,并基于它返回一个唯一的size_t类型的值。

语法:

unordered_multimap_name.hash_function()

参数: 函数不接受任何参数。

返回值: 函数返回哈希函数。

以下程序说明了unordered_multimap::hash_function()函数:

程序1:

// C++程序示例unordered_multimap::hash_function()
#include <iostream>
#include <unordered_map>
using namespace std;
  
int main()
{
  
    //声明
    unordered_multimap<string, string> sample;
  
    //插入键和元素
    sample.insert({ "gopal", "dave" });
    sample.insert({ "gopal", "dave" });
    sample.insert({ "gopal", "dave" });
    sample.insert({ "geeks", "geeks" });
  
    //使用hash_function
    unordered_multimap<string, string>::hasher fn
                                      = sample.hash_function();
  
    cout << fn("geeks") << endl;
  
    //打印键和元素
    cout << "键和元素:";
    for (auto it = sample.begin(); it != sample.end(); it++) {
        cout << "{" << it->first << ":"
             << it->second << "}, ";
    }
    return 0;
}
15276750567035005396
键和元素:{geeks:geeks}, {gopal:dave}, {gopal:dave}, {gopal:dave},

程序2:

// C++程序示例unordered_multimap::hash_function()
#include <iostream>
#include <unordered_map>
using namespace std;
  
int main()
{
  
    //声明
    unordered_multimap<string, string> sample;
  
    //插入键和元素
    sample.insert({ "gopal", "dave" });
    sample.insert({ "geeks", "geeks" });
  
    //使用hash_function
    unordered_multimap<string, string>::hasher fn
                                      = sample.hash_function();
  
    cout << fn("geeksforgeeks") << endl;
  
    //打印键和元素
    cout << "键和元素:";
    for (auto it = sample.begin(); it != sample.end(); it++) {
        cout << "{" << it->first << ":"
             << it->second << "}, ";
    }
    return 0;
}
5146686323530302118
键和元素:{geeks:geeks}, {gopal:dave},

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

C++ 教程