unordered_multiset :: hash_function()是C++ STL中的内置函数,用于获取哈希函数。该哈希函数是一元函数,仅接受单个参数,并基于该参数返回一个唯一的大小为size_t的值。
语法:
unordered_multiset_name.hash_function()
参数:该函数不接受任何参数。
返回值:该函数返回哈希函数。
下面的程序说明了unordered_multiset :: hash_function()函数:
程序1 :
// CPP program to illustrate the
// unordered_multiset::hash_function() function
#include
#include
#include
using namespace std;
int main()
{
unordered_multiset sampleSet = { "geeks1", "geeks1", "for", "geeks2" };
// use of hash_function
unordered_multiset::hasher fn = sampleSet.hash_function();
cout << fn("geeks") << endl;
for (auto it = sampleSet.begin(); it != sampleSet.end(); it++) {
cout << *it << " ";
}
cout << endl;
return 0;
}
输出:
15276750567035005396
geeks2 for geeks1 geeks1
程序2 :
// CPP program to illustrate the
// unordered_multiset::hash_function () function
#include
#include
#include
using namespace std;
int main()
{
unordered_multiset sampleSet;
// use of hash_function
unordered_multiset::hasher fn = sampleSet.hash_function();
cout << fn("geeksforgeeks") << endl;
return 0;
}
输出:
5146686323530302118
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。