在C++中,哈希冲突是指两个不同的输入值经过哈希函数处理后,得到了相同的哈希值。为了解决这个问题,我们可以采用以下几种方法:
#include <iostream>
#include <list>
#include <vector>
#include <string>
class HashTable {
public:
HashTable(size_t size) : table(size) {}
void insert(const std::string& key) {
size_t index = hash(key) % table.size();
table[index].push_back(key);
}
bool search(const std::string& key) const {
size_t index = hash(key) % table.size();
for (const auto& item : table[index]) {
if (item == key) {
return true;
}
}
return false;
}
void remove(const std::string& key) {
size_t index = hash(key) % table.size();
for (auto it = table[index].begin(); it != table[index].end(); ++it) {
if (*it == key) {
table[index].erase(it);
break;
}
}
}
private:
std::vector<std::list<std::string>> table;
size_t hash(const std::string& key) const {
size_t hash_value = 0;
for (char c : key) {
hash_value = 31 * hash_value + c;
}
return hash_value;
}
};
线性探测:
size_t linearProbing(size_t index, size_t size) {
return (index + 1) % size;
}
二次探测:
size_t quadraticProbing(size_t index, size_t size) {
return (index * index) % size;
}
双散列:
size_t doubleHashing(size_t index, size_t size, size_t seed) {
return (hash(index, seed) % size);
}
size_t hash(size_t index, size_t seed) {
return index * seed;
}
HashTable resize(HashTable& table, size_t newSize) {
std::vector<std::list<std::string>> newTable(newSize);
for (const auto& bucket : table.table) {
for (const auto& item : bucket) {
size_t newIndex = hash(item, newSize) % newSize;
newTable[newIndex].push_back(item);
}
}
return HashTable(newSize, newTable);
}
这些方法可以单独使用,也可以组合使用,以满足不同的需求和场景。在实际应用中,可以根据数据的特点和性能要求选择合适的哈希冲突解决方法。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。