设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1502|回复: 0
打印 上一主题 下一主题

[求助]hash_map

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-6 00:15:31 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
[求助]有关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;//不晓得如何修改。怎解?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 17:24 , Processed in 0.110501 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表