标题:[求助]hash_map
只看楼主
eiming
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2006-8-7
 问题点数:0 回复次数:1 
[求助]hash_map
[求助]有关hashhash函数如下:
#include <hash_map>
//#include<hash_map.h>
using namespace std;
struct calc_hash{
int operator()(string str)const{
int h = 0, g,i;
for (i = 0; i < str.size(); i++) {
h = (h << 4) + str[i];
if ((g = (h & 0xF0000000))) {
h = h ^ (g >> 24);
h = h ^ g;
}
}
return h;
}
};
如何在vc or vc.net里用hash_map?
typedef hash_map<string, int, str_hash> Mymap;//出现编译错误。。。
typedef hash_map<string,int, hash_compare<string,less<string> > Myhash;//不晓得如何修改。怎解?
搜索更多相关主题的帖子: hash map amp 
2007-04-11 14:32
yushui
Rank: 3Rank: 3
等 级:论坛游民
威 望:7
帖 子:1355
专家分:22
注 册:2006-7-19
得分:0 

定义的结构吧
直接调用
calc_hash hash;
hash.operator()?我这儿不怎么懂你的


fighting!from now on!
2007-04-11 20:34



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-131014-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.090024 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved