在下面的程序中,我有一个typedef map
。我想要做的是实现一个哈希表。我正在尝试使用unordered_map
因为我听说这是有效的,因为它需要O(1)时间。我在我的主程序中使用我的typedef map
(我正在处理的另一个程序),所以我不想改变它。我想在其中一个函数中实现哈希表,我试图找出如何将我的地图内容插入哈希表并稍后搜索密钥。我在两个我遇到麻烦的地方插了一条评论。请帮忙。
#include <iostream>
#include <vector>
#include <iterator>
#include <set>
#include <map>
#include <unordered_map>
using namespace std;
typedef vector<int> v_t;
typedef set<int> s_t;
typedef map<s_t, v_t> m_t;
typedef m_t::iterator m_it;
typedef std::unordered_map<s_t, v_t> Mymap;
int main(){
m_t sample;
for (int i = 0; i < 100; i = i+2) {
v_t v;
for(int k = 100 ; k<=105 ; ++k)
v.push_back(k);
s_t k;
k.insert(i);
sample.insert(sample.end(), make_pair(k, v));
}
//---------Debug--------------------
for( m_it it(sample.begin()) ; it!=sample.end(); ++it) {
cout << "Key: ";
copy(it->first.begin(), it->first.end(), ostream_iterator<int>(cout, " "));
cout << " => Value: ";
copy (it->second.begin(),it->second.end(),ostream_iterator<double>(cout," "));
cout << endl;
}
//---------------------------------
Mymap c1;
for( m_it it(sample.begin()) ; it!=sample.end(); ++it) {
c1.insert(Mymap::value_type(it->first,it->second)); // how to do this ?
}
s_t s;
s.insert(72);
if(c1.find(s)!=c1.end()) // does this work ?
cout << "Success" << endl;
return 0;
}
感谢您的任何帮助或评论。
在阅读Jason的评论后,我理解为什么我不能在std::set
中使用unordered_map
作为密钥,所以我尝试使用std::string
作为密钥,但find
函数赢了不行。请你帮助我好吗。
Mymap c1;
for( m_it it(sample.begin()) ; it!=sample.end(); ++it) {
v_t v1;
std::string key;
key.insert(key.begin(),it->first.begin(),it->first.end());
copy(it->second.begin(), it->second.end(),std::back_inserter(v1));
c1.insert(Mymap::value_type(std::make_pair(key,v1)));
}
string s = "72";
if((c1.find(s) != c1.end()) == true)
cout << "Success" << endl;
return 0;
答案 0 :(得分:5)
使用此功能所缺少的基本元素是为您用作密钥的std::set
定义散列函数。 STL已经为std::set
定义了相等和词典排序,因此您可以将其用作std::map
中的键值,而不会出现任何问题。它没有定义哈希函数,所以这是你要通过重载std :: hash来做的事情。这非常简单,可以通过定义以下函数来完成:
namespace std
{
template<>
struct hash<std::set<int> > : public std::unary_function<std::set<int>, size_t>
{
size_t operator()(const std::set<int>& my_set) const
{
//insert hash algorithm that returns integral type
}
};
}
上面的仿函数对象将返回一个整数类型的size_t
,并将std::set
作为参数。您必须在namespace std
内定义它,以便std::unordered_map
识别它。 “简单”算法可以简单地对元素求和,因为您有一组类型int
。有更复杂的算法可以减少冲突的数量,这样一个简单的算法会以牺牲哈希时间为代价。一旦你定义了这个,你就不应该将std::set
键值插入unordered_map
,以及创建新的键值并在哈希表中找到它们。
您可以在以下位置查看源代码的示例:http://ideone.com/DZ5jm
编辑:杰森的code放在这里供参考:
#include <iostream>
#include <vector>
#include <iterator>
#include <set>
#include <map>
#include <unordered_map>
using namespace std;
namespace std
{
template<>
struct hash<set<int> > : public unary_function<set<int>, size_t>
{
size_t operator()(const std::set<int>& my_set) const
{
set<int>::iterator iter = my_set.begin();
int total = 0;
for (; iter != my_set.end(); iter++)
{
total += *iter;
}
return total;
}
};
}
typedef vector<int> v_t;
typedef set<int> s_t;
typedef map<s_t, v_t> m_t;
typedef m_t::iterator m_it;
typedef std::unordered_map<s_t, v_t> Mymap;
int main(){
m_t sample;
for (int i = 0; i < 100; i = i+2) {
v_t v;
for(int k = 100 ; k<=105 ; ++k)
v.push_back(k);
s_t k;
k.insert(i);
sample.insert(sample.end(), make_pair(k, v));
}
//---------Debug--------------------
for( m_it it(sample.begin()) ; it!=sample.end(); ++it) {
cout << "Key: ";
copy(it->first.begin(), it->first.end(), ostream_iterator<int>(cout, " "));
cout << " => Value: ";
copy (it->second.begin(),it->second.end(),ostream_iterator<double>(cout," "));
cout << endl;
}
//---------------------------------
Mymap c1;
for( m_it it(sample.begin()) ; it!=sample.end(); ++it) {
c1.insert(Mymap::value_type(it->first,it->second)); // how to do this ?
}
s_t s;
s.insert(72);
if(c1.find(s)!=c1.end()) // does this work ?
cout << "Success" << endl;
return 0;
}