在C++中,有多种哈希算法可供选择,这些算法通常与STL(标准模板库)中的容器(如unordered_map和unordered_set)一起使用
#include <iostream>
#include <functional>
int main() {
std::hash<int> int_hash;
std::hash<std::string> str_hash;
int a = 42;
std::string s = "hello";
std::cout << "Hash of "<< a << ": " << int_hash(a) << std::endl;
std::cout << "Hash of \""<< s << "\": " << str_hash(s) << std::endl;
return 0;
}
#include <iostream>
#include <functional>
struct MyStruct {
int x;
int y;
};
namespace std {
template <>
struct hash<MyStruct> {
size_t operator()(const MyStruct& ms) const {
return hash<int>()(ms.x) ^ hash<int>()(ms.y);
}
};
}
int main() {
MyStruct ms = {42, 3.14};
std::unordered_map<MyStruct, std::string> my_map;
my_map[ms] = "Hello, world!";
std::cout << "Value for MyStruct(42, 3.14): " << my_map[ms] << std::endl;
return 0;
}
#include <iostream>
#include <boost/functional/hash.hpp>
struct MyStruct {
int x;
int y;
};
int main() {
MyStruct ms = {42, 3.14};
std::unordered_map<MyStruct, std::string, boost::hash<MyStruct>> my_map;
my_map[ms] = "Hello, world!";
std::cout << "Value for MyStruct(42, 3.14): " << my_map[ms] << std::endl;
return 0;
}
总之,C++提供了灵活的哈希算法支持,可以根据项目需求选择合适的哈希函数。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。