码迷,mamicode.com
首页 > 其他好文 > 详细

字符串Hash

时间:2020-01-18 19:31:35      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:div   i++   can   初始化   字符串hash   strlen   scanf   class   hash   

初始化:

char s[N];
unsigned long long f[1000010],p[1000010];
scanf("%s",s+1);
int n=strlen(s+1);
p[0]=1;

计算:

for(int i=1;i<=n;i++)
{
    f[i]=f[i-1]*131+(s[i]-a+1);
    p[i]=p[i-1]*131;
}

读取哈希值:

int l,r;
scanf("%d%d",&l,&r);
f[r]-f[l-1]*p[r-l+1]//hash of l~r

字符串Hash

标签:div   i++   can   初始化   字符串hash   strlen   scanf   class   hash   

原文地址:https://www.cnblogs.com/ChildeZhe/p/12209903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!